forked from castdrian/movie-web-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.86 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
{
"name": "mw-bot",
"version": "1.4.0",
"description": "movie-web discord bot",
"main": "dist/main.js",
"repository": "[email protected]:movie-web/discord-bot.git",
"license": "MIT",
"type": "module",
"private": true,
"scripts": {
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --fix --ext .ts src",
"lint:report": "eslint --ext .ts --output-file eslint_report.json --format json src",
"preinstall": "npx only-allow pnpm",
"build": "tsc -b src && pnpm run copy",
"copy": "cp src/tags.toml dist/tags.toml && cp src/mw-urls.txt dist/mw-urls.txt",
"clean": "tsc -b src --clean",
"watch": "tsc -b src -w",
"start": "pnpm run build && node dist/main.js"
},
"dependencies": {
"@ltd/j-toml": "^1.38.0",
"@movie-web/providers": "^2.0.5",
"@sapphire/decorators": "^6.0.3",
"@sapphire/framework": "^5.0.5",
"@sapphire/plugin-logger": "^4.0.1",
"discord.js": "^14.14.1",
"fastify": "^4.25.2",
"fastify-metrics": "^10.5.0",
"neat-config": "^2.0.0",
"prom-client": "^15.1.0",
"tmdb-ts": "^1.6.0",
"tslib": "^2.6.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@sapphire/eslint-config": "^5.0.3",
"@sapphire/ts-config": "^5.0.0",
"@types/node": "^20.10.7",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.2",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"pretty-quick": "^3.1.3",
"typescript": "^5.3.3"
},
"lint-staged": {
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
},
"imports": {
"#src/*": "./dist/*.js",
"#package.json": "./package.json"
}
}