-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.04 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
{
"name": "raven",
"description": "Friendly bot for the Vendetta Discord server.",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"start": "node .",
"build": "rimraf dist && tsc",
"dev": "rimraf dist && tsc-watch --onSuccess \"npm run start\""
},
"author": "maisymoe",
"license": "BSD-3-Clause",
"repository": "https://github.com/vendetta-mod/raven",
"dependencies": {
"@prisma/client": "5.5.2",
"bufferutil": "^4.0.8",
"discord.js": "^14.13.0",
"erlpack": "github:discord/erlpack",
"utf-8-validate": "^6.0.3",
"valtio": "^1.12.0",
"zlib-sync": "^0.1.9"
},
"devDependencies": {
"@types/node": "^20.9.0",
"prisma": "^5.5.2",
"rimraf": "^5.0.5",
"tsc-watch": "^6.0.4",
"type-fest": "^4.7.1",
"typescript": "^5.2.2"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"react",
"react-dom"
]
}
}
}