-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
29 lines (29 loc) · 895 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
{
"name": "@supalosa/chronodivide-bot",
"version": "0.6.0",
"description": "Example bot for Chrono Divide",
"repository": "https://github.com/Supalosa/supalosa-chronodivide-bot",
"main": "dist/main.js",
"type": "module",
"scripts": {
"build": "tsc -p .",
"watch": "tsc -p . -w",
"start": "node . --es-module-specifier-resolution=node",
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "UNLICENSED",
"devDependencies": {
"@chronodivide/game-api": "^0.51.2",
"@types/node": "^14.17.32",
"prettier": "3.0.3",
"typescript": "^4.3.5"
},
"peerDependencies": {
"@chronodivide/game-api": "^0.51.2"
},
"dependencies": {
"@datastructures-js/priority-queue": "^6.3.0",
"@timohausmann/quadtree-ts": "2.2.2",
"dotenv": "^16.3.1"
}
}