-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.21 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "discord-trakt",
"version": "1.0.0",
"main": "dist/bot.js",
"author": "Dustin Lennon <[email protected]>",
"description": "Track your TV shows and movies on Trakt.tv while you are engaging with your community",
"license": "ISC",
"dependencies": {
"@sapphire/decorators": "^6.0.2",
"@sapphire/discord-utilities": "^3.1.1",
"@sapphire/discord.js-utilities": "7.0.2",
"@sapphire/fetch": "^2.4.1",
"@sapphire/framework": "^4.7.1",
"@sapphire/pieces": "^3.7.0",
"@sapphire/plugin-api": "^5.1.1",
"@sapphire/plugin-editable-commands": "^3.0.3",
"@sapphire/plugin-logger": "^3.0.6",
"@sapphire/plugin-subcommands": "^4.2.2",
"@sapphire/time-utilities": "^1.7.10",
"@sapphire/type": "^2.4.0",
"@sapphire/utilities": "^3.13.0",
"@sentry/integrations": "^7.76.0",
"@sentry/node": "^7.76.0",
"@sentry/profiling-node": "^1.2.1",
"@sentry/tracing": "^7.76.0",
"@skyra/env-utilities": "^1.2.1",
"colorette": "^2.0.20",
"discord.js": "^14.13.0",
"mysql2": "^3.6.3",
"nodeless-trakt-ts": "^0.2.0",
"umzug": "^3.4.0"
},
"devDependencies": {
"@sapphire/cli": "^1.6.1",
"@sapphire/eslint-config": "^5.0.2",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.0",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.95",
"@tsconfig/node20": "^20.1.2",
"@types/node": "^20.8.7",
"@types/ws": "^8.5.8",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"tsc-watch": "^6.0.4",
"typescript": "^5.2.2"
},
"scripts": {
"sapphire": "sapphire",
"generate": "sapphire generate",
"build": "rimraf dist && swc ./src -d dist",
"start": "node dist/bot.js",
"format": "prettier --write \"src/**/*.ts\"",
"watch": "pnpm build && tsc-watch --noClear -p ./src/tsconfig.json --onSuccess \"node dist/bot.js\""
},
"prettier": "@sapphire/prettier-config",
"eslintConfig": {
"extends": "@sapphire"
},
"imports": {
"#lib/*": "./dist/lib/*.js"
},
"volta": {
"node": "20.9.0"
},
"type": "module"
}