-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1010 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 1010 Bytes
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
{
"name": "screeps-ai-starter",
"version": "1.0.1",
"description": "An empty starting place for writing a screeps API. Uses rollup to merge files, so you can organize your code and use NPM to import dependencies.",
"main": "src/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup --config",
"watch": "rollup --config --watch"
},
"keywords": [
"screeps"
],
"repository": {
"type": "git",
"url": "https://github.com/krixi/screeps-ai-starter.git"
},
"author": "krixi",
"devDependencies": {
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@types/screeps": "^3.3.0",
"eslint": "^6.8.0",
"eslint-plugin-screeps": "^2.1.0",
"prettier": "^1.19.1",
"rollup": "^1.32.1",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-eslint": "^7.0.0",
"screeps-api": "^1.16.1"
},
"dependencies": {
"source-map": "^0.6.1"
}
}