forked from oracle-framework/oracle-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 908 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 908 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
{
"devDependencies": {
"@types/better-sqlite3": "^7.6.9",
"@types/jest": "^29.5.14",
"@types/node": "^22.8.6",
"@types/uuid": "^10.0.0",
"jest": "^29.7.0",
"pino-pretty": "^13.0.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"dependencies": {
"better-sqlite3": "^9.4.3",
"commander": "^13.1.0",
"discord.js": "^14.17.3",
"dotenv": "^16.4.5",
"goat-x": "^1.1.0",
"grammy": "^1.33.0",
"openai": "^4.70.3",
"pino": "^9.6.0",
"pino-roll": "^2.2.0",
"uuid": "^11.0.5"
},
"scripts": {
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"build": "tsc && cp src/characters/characters.json dist/characters/",
"format": "prettier --write \"src/**/*.{js,ts,tsx,json}\"",
"watch": "tsc -w",
"test": "jest",
"test:watch": "jest --watch"
}
}