-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1020 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1020 Bytes
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": "gameci-help-bot",
"version": "3.0.0",
"description": "TypeScript-styled orchestrator for the GameCI Help Bot",
"main": "dist/cli.js",
"type": "commonjs",
"scripts": {
"build": "tsc",
"lint": "eslint --ext .ts src",
"cycle": "npm run build && node dist/cli.js cycle",
"continuous": "npm run build && node dist/cli.js continuous",
"dev": "ts-node src/cli.ts",
"vector-bake": "npm run build && node dist/cli.js vector-bake"
},
"bin": {
"gameci-help-bot": "dist/cli.js"
},
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"@octokit/rest": "^22.0.1",
"discord.js": "^14.25.1",
"dotenv": "^16.5.0",
"glob": "^13.0.6",
"keytar": "^7.9.0",
"node-html-parser": "^7.0.1",
"prompts": "^2.4.2",
"turndown": "^7.1.1",
"undici": "^5.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^20.4.2",
"@types/yargs": "^17.0.24",
"ts-node": "^10.9.1",
"typescript": "^5.5.6"
}
}