forked from friedger/citizenwallet-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.22 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.22 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
{
"name": "discord-bot",
"version": "1.0.0",
"description": "A Discord bot powered by discord.js",
"main": "dist/index.js",
"type": "commonjs",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"start": "npm run register-commands && node dist/index.js",
"dev": "tsx watch src/index.ts",
"build": "rimraf dist && tsc",
"cron": "tsx src/scripts/cron-burn.ts",
"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.106",
"discord.js": "^14.16.3",
"dotenv": "^16.4.5",
"ethers": "^6.13.5",
"express": "^4.21.2",
"nostr-tools": "^2.12.0",
"openai": "^4.89.0",
"qrcode": "^1.5.4",
"sharp": "^0.33.5",
"ws": "^8.18.1"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^20.11.24",
"@types/qrcode": "^1.5.5",
"@types/ws": "^8.18.0",
"rimraf": "^6.0.1",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
}
}