-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.17 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
{
"name": "screeps",
"version": "3.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "rollup -c",
"push-main": "rollup -c --environment DEST:main",
"push-pserver": "rollup -c --environment DEST:pserver",
"watch-main": "rollup -cw --environment DEST:main",
"watch-pserver": "rollup -cw --environment DEST:pserver"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geocine/screeps.git"
},
"author": "Aivan Monceller",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/geocine/screeps/issues"
},
"homepage": "https://github.com/geocine/screeps#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@types/lodash": "3.10.2",
"@types/node": "^13.13.1",
"@types/screeps": "^3.2.3",
"prettier": "^2.3.2",
"rollup": "^2.56.2",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-screeps": "^1.0.1",
"rollup-plugin-typescript2": "^0.31.1",
"ts-node": "^10.2.0",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.3.5"
},
"dependencies": {
"source-map": "~0.6.1",
"xstate": "^4.26.1"
}
}