-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
31 lines (31 loc) · 911 Bytes
/
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
{
"name": "screepsdevspace",
"description": "Screeps World 的代码开发环境搭建,用于快速部署CodeSpace,用JetBrains 连接",
"version": "1.0.0",
"main": "index.js",
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/lodash": "^3.10.1",
"@types/screeps": "^3.3.0",
"rollup": "^2.78.1",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-screeps": "^1.0.1",
"rollup-plugin-typescript2": "^0.33.0",
"typescript": "^4.8.2"
},
"scripts": {
"push": "rollup -cw --environment DEST:main",
"local": "rollup -cw --environment DEST:local",
"build": "rollup -cw",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"type": "module",
"license": "ISC",
"dependencies": {
"source-map": "^0.6.1"
}
}