forked from laverdet/screeps-steamless-client
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
63 lines (63 loc) · 1.98 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "screepers-steamless-client",
"description": "A browser client for Screeps",
"type": "module",
"version": "1.14.0",
"bin": {
"screepers-steamless-client": "dist/clientApp.js"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c",
"dev": "rollup -cw",
"format": "prettier --write 'src/**/*.ts'",
"lint": "eslint src/**/*.ts",
"prestart": "npm run build",
"start": "node dist/clientApp.js",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/screepers/steamless-client.git"
},
"author": "laverdet",
"license": "ISC",
"bugs": {
"url": "https://github.com/screepers/steamless-client/issues"
},
"homepage": "https://github.com/screepers/steamless-client#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/argparse": "2.0.16",
"@types/http-proxy": "1.17.14",
"@types/js-beautify": "1.14.3",
"@types/koa": "2.15.0",
"@types/koa-conditional-get": "2.0.3",
"@types/node": "20.14.8",
"@types/node-fetch": "2.6.11",
"@types/winreg": "^1.2.36",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"rollup": "^4.18.0",
"typescript": "5.5.2"
},
"dependencies": {
"@ladjs/koa-views": "^9.0.0",
"argparse": "2.0.1",
"chalk": "^5.3.0",
"ejs": "^3.1.10",
"http-proxy": "1.18.1",
"http-proxy-middleware": "^3.0.0",
"js-beautify": "1.15.1",
"jszip": "^3.10.1",
"koa": "2.15.3",
"koa-conditional-get": "3.0.0",
"node-fetch": "^3.3.2",
"winreg": "^1.2.5"
}
}