-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·56 lines (56 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·56 lines (56 loc) · 1.3 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "cryptocurrency-crypto-bot",
"version": "2.1.0",
"description": "Cryptocurrency-crypto-bot is an open-source Node.js wallet bot for Discord.",
"main": "./index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"build": "npm ci --only=production",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"cryptobot": "./index.js"
},
"pkg": {
"scripts": "./functions/**/*.js",
"assets": "./storage/**/*"
},
"author": "Christian Grieger",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"discord.js": "^14.16.3",
"mysql2": "^3.11.4",
"big.js": "^6.2.2",
"moment-timezone": "^0.5.46",
"log4js": "^6.9.1",
"lowdb": "^1.0.0",
"bitcoin-core": "^4.2.0",
"axios": "^1.7.9"
},
"devDependencies": {
"nodemon": "^3.1.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yourusername/cryptocurrency-crypto-bot.git"
},
"keywords": [
"discord",
"bot",
"cryptocurrency",
"wallet",
"bitcoin",
"altcoin",
"tip",
"rain",
"staking"
],
"bugs": {
"url": "https://github.com/yourusername/cryptocurrency-crypto-bot/issues"
},
"homepage": "https://github.com/yourusername/cryptocurrency-crypto-bot#readme"
}