forked from bencbartlett/Overmind
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 2.33 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "overmind",
"version": "0.6.0",
"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": "eslint \"src/**/*.ts\"",
"lint:fix": "eslint --fix \"src/**/*.ts\"",
"prettier": "prettier --list-different --write src",
"format": "npm run prettier && npm run lint:fix",
"clean": "rm -rf tsc-out && rm -rf dist",
"obfuscate": "npm run clean && npm run build && javascript-obfuscator --config obfuscator.config.json tsc-out/src/Overmind.js --output src/Overmind_obfuscated.js && javascript-obfuscator --config obfuscator.config.json tsc-out/src/assimilation/Assimilator.js --output src/assimilation/Assimilator_obfuscated.js",
"make-public": "node tools/make-public.js",
"compile": "rollup -c",
"push-mmo": "rollup -c --environment DEST:mmo",
"push-ptr": "rollup -c --environment DEST:ptr",
"push-sim": "rollup -c --environment DEST:sim",
"push-pserver": "rollup -c --environment DEST:pserver",
"push-screepsplus": "rollup -c --environment DEST:screepsplus",
"test": "npm run clean && npm run build"
},
"type": "module",
"engines": {
"node": ">= 18.9.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"@total-typescript/ts-reset": "^0.5.1",
"@types/columnify": "^1.5.1",
"@types/lodash": "3.10.2",
"@types/screeps": "^3.3.3",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jsdoc": "^46.4.5",
"eslint-plugin-prefer-arrow": "^1.2.3",
"javascript-obfuscator": "^4.1.0",
"prettier": "3.1.0",
"rollup": "^3.27.1",
"rollup-plugin-progress": "^1.1.2",
"rollup-plugin-screeps": "^1.0.1",
"rollup-plugin-typescript2": "^0.35.0",
"simple-git": "^3.19.1",
"typedoc": "^0.24.8",
"typescript": "^5.1.6"
},
"dependencies": {
"@tensorflow/tfjs": "^1.2.11",
"columnify": "^1.6.0",
"onnxjs": "^0.1.6",
"source-map": "0.7.3"
}
}