-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.24 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
{
"name": "astolfo-bot",
"version": "1.0.0",
"type": "module",
"scripts": {
"clean": "git clean -d -f -X -e '!*.vars'",
"update": "yarn upgrade-interactive",
"lint": "eslint --max-warnings 0 source",
"pretty": "find source -type f -exec prettier --write {} \\;",
"dev": "wrangler dev",
"types": "wrangler types source/types/worker.d.ts",
"build": "run deploy --dry-run && rm dist/README.md",
"deploy": "run lint && tsc && wrangler deploy --outdir dist --minify",
"secret": "wrangler secret put",
"logs": "wrangler tail --format pretty"
},
"dependencies": {
"discord-api-types": "^0.37.119",
"discord-interactions": "^4.1.1",
"itty-router": "^5.0.18",
"stacktrace-parser": "^0.1.10"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250214.0",
"@eslint/js": "^9.20.0",
"@stylistic/eslint-plugin": "^3.1.0",
"@types/node": "^22.13.4",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"jiti": "^2.4.2",
"prettier": "^3.5.1",
"prettier-eslint": "^16.3.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0",
"wrangler": "^3.109.1"
},
"engines": {
"node": ">=23.6.0",
"npm": ">=11.0.0",
"yarn": ">=4.6.0"
},
"packageManager": "[email protected]"
}