-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 796 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 796 Bytes
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
{
"name": "wasp-discord",
"module": "src/index.ts",
"type": "module",
"version": "3.0.0",
"scripts": {
"gentypes": "bun run src/lib/types/update.ts",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"build": "bun build src/index.ts --outdir build --target=bun",
"start": "NODE_ENV=production bun run build/index.js",
"dev": "bun --watch run src/index.ts"
},
"devDependencies": {
"@types/bun": "latest",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.7.4"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@supabase/supabase-js": "^2.89.0",
"bufferutil": "^4.1.0",
"discord.js": "^14.25.1"
}
}