-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
36 lines (36 loc) · 970 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
28
29
30
31
32
33
34
35
36
{
"name": "swgohbot",
"version": "2.0.0",
"description": "Discord bot for the Star Wars Galaxy of Heroes game.",
"main": "swgohBot.js",
"scripts": {
"lint": "eslint",
"start": "node swgohBotShard.js",
"test": "node --test ./test/**/*.test.js"
},
"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": "^1.4.1",
"async": "^3.2.6",
"discord.js": "^14.17.3",
"mongodb": "^6.13.0",
"piscina": "^4.8.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4"
}
}