-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.26 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.26 KB
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
40
41
42
{
"name": "discord-bot",
"version": "1.0.0",
"description": "A Discord bot powered by discord.js",
"main": "dist/index.js",
"type": "commonjs",
"scripts": {
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"dev": "tsx watch src/index.ts",
"build": "rimraf dist && tsc",
"register-commands": "tsx src/register-commands.ts",
"register-bot": "tsx src/register-bot-account.ts",
"update-bot": "tsx src/update-bot-account.ts",
"bot-address": "tsx src/bot-address.ts"
},
"dependencies": {
"@citizenwallet/sdk": "^2.0.125",
"discord.js": "^14.16.3",
"dotenv": "^16.4.5",
"ethers": "^6.13.5",
"express": "^4.21.2",
"openai": "^4.89.0",
"qrcode": "^1.5.4",
"sharp": "^0.33.5",
"ws": "^8.18.1"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.11.24",
"@types/qrcode": "^1.5.5",
"@types/ws": "^8.18.0",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.3.2",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
}
}