forked from screepers/node-screeps-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.08 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.08 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
{
"name": "screeps-api",
"version": "1.16.2",
"description": "",
"repository": "screepers/node-screeps-api",
"main": "dist/ScreepsAPI.js",
"module": "src/index.js",
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build",
"lint": "standard src/**/*.js",
"lint-fix": "standard src/**/*.js --fix",
"test": "echo Tests disabled, TODO: FIX THIS!",
"2npm": "publish-if-not-published"
},
"author": "Adam Shumann",
"license": "ISC",
"bin": {
"screeps-api": "bin/screeps-api.js"
},
"dependencies": {
"axios": "^1.8.4",
"commander": "^13.1.0",
"debug": "^4.4.0",
"ws": "^8.18.1",
"yamljs": "^0.3.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.9",
"utf-8-validate": "^6.0.5"
},
"devDependencies": {
"lodash": "^4.17.21",
"publish-if-not-published": "^3.1.3",
"rollup": "^4.39.0",
"rollup-plugin-typescript2": "^0.36.0",
"standard": "^17.1.2",
"tslib": "^2.8.1",
"typescript": "^5.8.3"
},
"browser": {
"ws": "./src/ws-browser.js"
},
"types": "dist/types/index.d.ts"
}