-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
43 lines (43 loc) · 1.53 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
{
"name": "tph_docs_bot",
"version": "1.0.0",
"description": "A Discord bot to display documentation ",
"main": "dist/bot.js",
"scripts": {
"tsc": "tsc",
"start": "npm run tsc && npm run register-global-commands && node dist/bot.js",
"test": "echo \"Error: no test specified\" && exit 1",
"register-guild-commands": "cross-env REGISTER_MODE=GUILD node dist/handlers/RegisterCommands.js",
"register-global-commands": "cross-env REGISTER_MODE=GLOBAL node dist/handlers/RegisterCommands.js",
"reset-guild-commands": "cross-env REGISTER_MODE=RESET_GUILD node dist/handlers/RegisterCommands.js",
"reset-global-commands": "cross-env REGISTER_MODE=RESET_GLOBAL node dist/handlers/RegisterCommands.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@discordjs/builders": "^0.11.0",
"@discordjs/rest": "^0.2.0-canary.0",
"discord-api-types": "^0.26.1",
"discord.js": "^13.6.0",
"discord.js-docs": "github:BenjammingKirby/discord.js-docs#typescriptRewrite",
"dotenv": "^12.0.3",
"fast-xml-parser": "^4.0.1",
"flexsearch": "^0.7.21",
"glob": "^7.2.0",
"node-fetch": "^2.6.6",
"pm2": "^5.1.2"
},
"devDependencies": {
"@types/flexsearch": "^0.7.2",
"@types/glob": "^7.2.0",
"@types/node": "^17.0.8",
"@types/node-fetch": "^2.5.12",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"cross-env": "^7.0.3",
"eslint": "^8.6.0",
"prettier": "^2.5.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.4"
}
}