generated from screepers/screeps-typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
84 lines (84 loc) · 3.01 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "screeps-typescript-starter",
"version": "3.0.0",
"description": "",
"main": "index.js",
"//": "If you add or change the names of destinations in screeps.json, make sure you update these scripts to reflect the changes",
"scripts": {
"lint": "eslint \"src/**/*.ts\"",
"build": "rollup -c",
"push-main": "rollup -c --environment DEST:main",
"push-xxworld": "rollup -c --environment DEST:xxworld",
"push-splus": "rollup -c --environment DEST:splus",
"push-pserver": "rollup -c --environment DEST:pserver",
"push-marvin": "rollup -c --environment DEST:marvin",
"push-sim": "rollup -c --environment DEST:sim",
"push-botarena": "rollup -c --environment DEST:botarena",
"test": "jest",
"test:performance": "rollup -c -o ..\\Screeps-Performance-Server\\bots\\dist\\main.js",
"watch": "rollup -cw",
"watch-main": "rollup -cw --environment DEST:main",
"watch-xxworld": "rollup -cw --environment DEST:xxworld",
"watch-splus": "rollup -cw --environment DEST:splus",
"watch-pserver": "rollup -cw --environment DEST:pserver",
"watch-marvin": "rollup -cw --environment DEST:marvin",
"watch-sim": "rollup -cw --environment DEST:sim",
"watch-botarena": "rollup -cw --environment DEST:botarena"
},
"repository": {
"type": "git",
"url": "git+https://github.com/screepers/screeps-typescript-starter.git"
},
"author": "",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/screepers/screeps-typescript-starter/issues"
},
"homepage": "https://github.com/screepers/screeps-typescript-starter#readme",
"engines": {
"node": "14.x"
},
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-multi-entry": "^3.0.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@rollup/plugin-replace": "^2.4.2",
"@types/jest": "^27",
"@types/lodash": "3.10.2",
"@types/node": "^13.13.1",
"@types/screeps": "^3.1.0",
"@types/screeps-profiler": "^1.2.2",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"@typescript-eslint/typescript-estree": "^6.1.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^27",
"lodash": "^4.17.21",
"prettier": "^3.0.0",
"rollup": "^2.27.1",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-nodent": "^0.2.2",
"rollup-plugin-screeps": "^1.0.0",
"rollup-plugin-tsconfig-paths": "^1.5.1",
"rollup-plugin-typescript2": "^0.27.0",
"screeps-jest": "github:eduter/screeps-jest",
"ts-jest": "^27",
"ts-node": "^10.0.0",
"typescript": "^4.0.3"
},
"dependencies": {
"reflect-metadata": "^0.1.13",
"screeps-cache": "^1.0.11",
"screeps-cartographer": "^1.6.3",
"screeps-viz": "^2.1.3",
"source-map": "~0.6.1",
"table": "^6.0.3",
"ts-polyfill": "^3.8.2",
"tslib": "^2.2.0"
}
}