-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 946 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 946 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
31
32
33
34
35
36
37
38
{
"name": "chubby",
"version": "1.0.0",
"description": "",
"main": "./dist/bot.js",
"scripts": {
"dev": "tsup --watch --onSuccess \"node dist/bot.js\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "tsc --noEmit && tsup",
"start": "node --enable-source-maps dist/bot.js"
},
"license": "AGPL-3.0-only",
"dependencies": {
"@neato/config": "^4.0.3",
"@tensorflow/tfjs": "^4.22.0",
"@tensorflow/tfjs-node": "^4.22.0",
"decode-gif": "^1.0.1",
"discord-api-types": "0.37.119",
"discord.js": "^14.15.3",
"got": "^11.8.2",
"node-schedule": "^2.1.1",
"pg": "^8.16.2",
"sequelize": "^6.19.0",
"sharp": "^0.33.4",
"zod": "^3.25.67"
},
"devDependencies": {
"@pretendonetwork/eslint-config": "^0.0.8",
"@types/glob": "^8.1.0",
"@types/node": "^22.5.5",
"@types/node-schedule": "^2.1.7",
"@types/sequelize": "^4.28.20",
"eslint": "^9.29.0",
"tsup": "^8.5.0",
"typescript": "^5.1.6"
}
}