-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.35 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.35 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
{
"name": "ecbot",
"author": "E9C50",
"version": "2.0.0",
"description": "An AI bot for screeps",
"type": "module",
"scripts": {
"build": "rollup -c",
"lint": "eslint \"src/**/*.ts\"",
"push-main": "rollup -c --environment DEST:main",
"push-pserver": "rollup -c --environment DEST:pserver",
"push-avarice": "rollup -c --environment DEST:avarice",
"push-local": "rollup -c --environment DEST:local",
"push-season": "rollup -c --environment DEST:season",
"push-sim": "rollup -c --environment DEST:sim",
"watch-main": "rollup -cw --environment DEST:main",
"watch-pserver": "rollup -cw --environment DEST:pserver",
"watch-avarice": "rollup -cw --environment DEST:avarice",
"watch-local": "rollup -cw --environment DEST:local",
"watch-season": "rollup -cw --environment DEST:season",
"watch-sim": "rollup -cw --environment DEST:sim"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.0",
"@types/lodash": "^3.10.1",
"@types/screeps": "^3.3.8",
"rollup-plugin-typescript2": "^0.36.0",
"rollup-plugin-screeps": "^1.0.1",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-copy": "^3.5.0",
"typescript": "^5.6.3",
"rollup": "^2.79.2"
},
"dependencies": {
"source-map": "~0.6.1"
}
}