-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.22 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
{
"name": "discord-bot",
"version": "1.0.0",
"main": "index.js",
"license": "Apache",
"languageName": "node",
"author": {
"email": "[email protected]",
"name": "Thomas Esseul"
},
"engines": {
"node": "20"
},
"scripts": {
"start": "concurrently -n \"Build,Start\" -c \"green,magenta\" npm:watch:build npm:watch:start",
"watch:start": "node --watch --env-file=.env dist",
"watch:build": "ncc build src/index.ts -w -o dist",
"build": "ncc build src/index.ts -o dist",
"docker:build": "docker build . -t taelar/shanbot",
"docker:start": "docker run -d --rm --name shanbot taelar/shanbot",
"commands:build": "tsc deploy-commands.ts --outDir dist --moduleResolution nodenext --skipLibCheck true",
"commands:guild": "node --env-file=.env dist/deploy-commands.js -- global=false",
"commands:global": "node --env-file=.env dist/deploy-commands.js -- global=true"
},
"dependencies": {
"@discordjs/builders": "^0.12.0",
"@discordjs/rest": "^0.3.0",
"discord-api-types": "^0.29.0",
"discord.js": "^13.6.0",
"discordx": "^9.1.12"
},
"devDependencies": {
"@types/node": "^16.11.26",
"@vercel/ncc": "^0.38.1",
"eslint": "^7.1.0",
"concurrently": "^8.2.2",
"tslib": "^2.3.1",
"typescript": "^4.9.5"
}
}