-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2 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
61
62
63
{
"name": "thinking-engine",
"version": "0.1.1",
"description": "A Discord bot to assist in playing the Troika! TTRPG.",
"main": "./dist/bot.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/rsek/thinking-engine-discord-bot.git"
},
"engines": {
"node": "17.x",
"npm": "8.x",
"yarn": "1.22"
},
"scripts": {
"flush": "rm -r ./dist && mkdir dist",
"build": "tsc --build --clean && tsc --build --verbose .",
"rebuild": "yarn flush && yarn build",
"postinstall": "patch-package",
"debug": "yarn rebuild && node .",
"start": "yarn rebuild && pm2 start ./dist/bot.js --name \"Thinking Engine\"",
"restart": "yarn rebuild && pm2 restart \"Thinking Engine\" --update-env",
"stop": "pm2 stop \"Thinking Engine\"",
"kill": "yarn stop && pm2 delete \"Thinking Engine\"",
"wipe-global": "node ./dist/wipeGlobalCommands.js",
"wipe-guild": "node ./dist/wipeGuildCommands.js"
},
"author": "rsek",
"license": "ISC",
"dependencies": {
"@discordjs/rest": "^0.3.0",
"@discordx/importer": "^1.1.2",
"@discordx/internal": "^1.0.2",
"@discordx/pagination": "^2.0.0",
"discord-api-types": "^0.28.0",
"discord.js": "^14.0.0-dev.1646395406.6f7a366",
"discordx": "^10.0.0-dev.1646443270.8c9d2f69",
"dotenv": "^16.0.0",
"lodash-es": "^4.17.21",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"source-map-support": "^0.5.21",
"title-case": "^3.0.3",
"ts-node": "^10.7.0",
"typed-regex": "^0.0.8",
"typescript": "^4.7.0-dev.20220323",
"weighted": "^1.0.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.5",
"@types/lodash-es": "^4.17.6",
"@types/node": "^17.0.19",
"@types/yamljs": "^0.2.31",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^8.10.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-sort-class-members": "^1.14.1",
"pm2": "^5.2.0"
}
}