forked from bencbartlett/Overmind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.72 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
43
44
45
{
"name": "Overmind",
"version": "0.5.2",
"description": "Overmind Screeps AI",
"author": "Ben Bartlett",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bencbartlett/Overmind.git"
},
"homepage": "https://github.com/bencbartlett/Overmind#readme",
"bugs": {
"url": "https://github.com/bencbartlett/Overmind/issues"
},
"scripts": {
"build": "tsc -p .",
"lint": "tslint \"src/**/*.ts\"",
"clean": "rm -rf tsc-out && rm -rf dist",
"obfuscate": "tsc && javascript-obfuscator tsc-out/Overmind.js --output src/Overmind_obfuscated.js --compact false --self-defending true --string-array true --string-array-threshold 1 --string-array-encoding true && javascript-obfuscator tsc-out/assimilation/Assimilator.js --output src/assimilation/Assimilator_obfuscated.js --compact false --self-defending true --string-array true --string-array-threshold 1 --string-array-encoding true",
"compile": "rollup -c",
"push-main": "rollup -c --environment DEST:main",
"push-pserver": "rollup -c --environment DEST:pserver",
"push-screepsplus": "rollup -c --environment DEST:screepsplus",
"test": "npm run clean && npm run lint && npm run build"
},
"devDependencies": {
"@types/lodash": "3.10.1",
"@types/screeps": "2.5.4",
"rollup": "0.62.0",
"rollup-plugin-commonjs": "8.4.1",
"rollup-plugin-node-resolve": "3.3.0",
"rollup-plugin-progress": "^0.4.0",
"rollup-plugin-screeps": "0.1.2",
"rollup-plugin-typescript2": "0.16.1",
"tslint": "^5.16.0",
"typedoc": "^0.14.2",
"typescript": "2.9.2"
},
"dependencies": {
"@tensorflow/tfjs": "^1.1.2",
"columnify": "1.5.4",
"onnxjs": "^0.1.6",
"source-map": "0.7.3"
}
}