-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
27 lines (27 loc) · 893 Bytes
/
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
{
"name": "troubleshooter-bot",
"version": "1.1.0",
"description": "Tin Can troubleshooter bot",
"main": "index.js",
"scripts": {
"install": "npm ci -omit dev",
"build": "tsc",
"postbuild": "copy config.json dist && copy package*.json dist && cd dist && npm ci -omit dev",
"predistbuild": "tsc",
"distbuild": "ren dist \"Troubleshoot Bot\" && copy Default_config.json \"Troubleshoot Bot\" && copy package*.json \"Troubleshoot Bot\" && cd \"Troubleshoot Bot\" && ren Default_config.json config.json"
},
"repository": {
"type": "git",
"url": "https://github.com/GTink911/TinCan-Troubleshooter-Bot"
},
"author": "GTink911#1237",
"license": "ISC",
"dependencies": {
"discord.js": "^14.2.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.26.0"
}
}