-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
39 lines (39 loc) · 1.02 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
{
"name": "my-screeps-ai",
"version": "1.0.0",
"description": "my custom ai for game Screeps",
"main": "src/main.js",
"scripts": {
"start": "rollup -cw --environment DEST:main",
"local": "rollup -cw --environment DEST:local",
"build": "rollup -cw"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HoPGoldy/my-screeps-ai.git"
},
"keywords": [
"screeps"
],
"author": "hopgoldy",
"license": "ISC",
"bugs": {
"url": "https://github.com/HoPGoldy/my-screeps-ai/issues"
},
"homepage": "https://github.com/HoPGoldy/my-screeps-ai#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@types/lodash": "^3.10.2",
"@types/node": "^14.0.24",
"rollup": "^2.22.1",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-screeps": "^1.0.1",
"rollup-plugin-typescript2": "^0.27.1",
"typescript": "^3.9.7"
},
"dependencies": {
"source-map": "^0.6.1"
}
}