-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.74 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "vtuberwiki-discord-bot",
"version": "1.0.0",
"description": "The Official Discord Bot for chat.vtubers.wiki ",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --cache --fix --no-error-on-unmatched-pattern 'src/**/*.ts'",
"start": "node dist/deploy-commands.js && node dist/index.js",
"dev": "nodemon --watch src --exec ts-node src/index.ts",
"dev::idle": "ts-node src/index.ts",
"deploy-commands": "ts-node src/deploy-commands.ts",
"postinstall": "npm run build",
"build": "tsc",
"server:start": "git pull && npm run build && pm2 start 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vtuberwiki/bot.git"
},
"author": "vtuberwiki",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/vtuberwiki/bot/issues"
},
"homepage": "https://github.com/vtuberwiki/bot#readme",
"devDependencies": {
"@types/adm-zip": "^0.5.3",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.18",
"@types/nodemailer": "^6.4.13",
"eslint": "^8.52.0",
"nodemon": "^3.0.1",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@discordjs/builders": "^1.6.5",
"@discordjs/rest": "^2.0.1",
"@octokit/rest": "^20.0.2",
"adm-zip": "^0.5.10",
"axios": "^1.5.1",
"body-parser": "^1.20.2",
"developer-toolkit-utils": "^1.0.9",
"discord-api-types": "^0.37.59",
"discord.js": "^14.13.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"mongoose": "^7.5.3",
"node-cron": "^3.0.2",
"node-fetch": "^3.3.2",
"nodemailer": "^6.9.7",
"os": "^0.1.2"
},
"engines": {
"node": "20.8.0",
"npm": "10.2.0"
}
}