-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.91 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.91 KB
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
{
"name": "swgohbot",
"version": "3.0.0",
"description": "Discord bot for the Star Wars Galaxy of Heroes game.",
"main": "swgohBot.js",
"type": "module",
"scripts": {
"prepare": "husky",
"start": "node swgohBotShard.ts",
"lint": "biome check --no-errors-on-unmatched .",
"lint:write": "biome check --write --no-errors-on-unmatched .",
"deploy": "node scripts/deployCommands.ts",
"indexes": "node scripts/verifyIndexes.ts",
"indexes:check": "node scripts/verifyIndexes.ts --dry-run",
"indexes:create": "node scripts/verifyIndexes.ts --create",
"test": "LOG_LEVEL=silent node --test --test-global-setup ./test/setup/globalSetup.ts ./test/**/*.test.ts",
"test:modules": "LOG_LEVEL=silent node --test --test-global-setup ./test/setup/globalSetup.ts ./test/modules/*.test.ts",
"test:slash": "LOG_LEVEL=silent node --test --test-global-setup ./test/setup/globalSetup.ts ./test/slash/*.test.ts"
},
"author": "Jeffrey Milner",
"license": "MIT",
"bugs": {
"url": "https://github.com/jmiln/SWGoHBot/issues"
},
"homepage": "https://github.com/jmiln/SWGoHBot#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jmiln/SWGoHBot.git"
},
"dependencies": {
"@swgoh-utils/comlink": "^2.0.0",
"async": "^3.2.6",
"discord.js": "^14.26.3",
"mongodb": "^7.1.1",
"pino": "^10.3.1",
"piscina": "^5.1.4",
"zod": "^4.3.6"
},
"engines": {
"node": ">=25.2"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@testcontainers/mongodb": "11.14",
"@types/async": "^3.2.25",
"@types/node": "^25.6.0",
"discord-api-types": "^0.38.47",
"husky": "^9.1.7"
},
"overrides": {
"undici": "^6.24",
"lodash": "^4.18",
"dockerode": "^5"
}
}