-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 984 Bytes
/
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
{
"name": "gpt-discord-bot",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"build-watch": "tsc --watch",
"start": "npm run build && node dist/src/index.js",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"redis": "redis-server --save ''"
},
"author": "",
"license": "ISC",
"dependencies": {
"@anthropic-ai/sdk": "^0.21.1",
"axios": "^1.7.2",
"chalk": "^4.1.2",
"cheerio": "^1.0.0-rc.12",
"discord.js": "^14.15.3",
"dotenv": "^16.4.5",
"gpt-3-encoder": "^1.1.4",
"ioredis": "^5.4.1",
"js-tiktoken": "^1.0.12",
"node-fetch": "^2.7.0",
"number-to-words-ru": "^2.4.1",
"openai": "^3.3.0",
"replicate": "^0.32.0",
"sharp": "^0.33.4"
},
"devDependencies": {
"@types/node": "^22.5.0",
"nodemon": "^2.0.22",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.4"
}
}