-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.38 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
66
67
68
69
70
71
{
"name": "JsSC2",
"version": "0.0.0",
"description": "This package is a JavaScript port of the deepmind/pysc2 Starcraft II environment and library for training agents.",
"author": "Andrew R Carpenter, Jihan Kim",
"author_email": "andrewryancarpenter77@gmail.com, jihan1218@gmail.com",
"license": "Apache License, Version 2.0",
"keywords": [
"Javascript",
"StarCraft AI",
"jssc2",
"deepmind",
"Starcraft",
"machine learning",
"AI"
],
"url": "https://github.com/arcman7/jssc2",
"main": "jssc2/jssc2.bundle.js",
"scripts": {
"jssc2_agent": "node bin/agent.js",
"jssc2_play": "node bin/play.js",
"jssc2_replay_info": "node bin/replay_info.js",
"test": "jest --colors",
"build_launch_renderer": "cd jssc2/lib && browserify -r ./renderer_human/tensorflow_stub.js:@tensorflow/tfjs -r ./renderer_human/tensorflow_backend_stub.js:@tensorflow/tfjs-node -r s2clientprotocol -r gamejs -r ./pythonUtils.js -r ./numpy.js -r ./named_array.js -r ./static_data.js -r ./stopwatch.js -r ./point.js -r ./colors.js -r ./transform.js -r ./actions.js -r ./features.js -r ./protocol.js -r ./renderer_human.js > ./renderer_human/bundle.js && node renderer_human.test.js"
},
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.0.20",
"@tensorflow/tfjs": "^2.0.1",
"@tensorflow/tfjs-backend-wasm": "^2.0.1",
"@tensorflow/tfjs-core": "^2.0.1",
"@tensorflow/tfjs-node": "^2.0.1",
"@tensorflow/tfjs-node-gpu": "^1.7.4",
"acorn": "^6.4.1",
"binascii": "0.0.2",
"collections": "^5.1.11",
"crypto": "^1.0.1",
"deep-diff": "^1.0.2",
"dev-dependencies": "^1.0.0",
"double-ended-queue": "^2.1.0-0",
"empeeku": "^1.0.2",
"flags": "^0.1.3",
"fluent-ffmpeg": "^2.1.2",
"gamejs": "^2.0.2",
"get-port": "^5.1.1",
"google-protobuf": "^3.12.4",
"mpyqjs": "^1.0.1",
"node-worker-threads-pool": "^1.4.0",
"protobufjs": "^6.10.1",
"python-enum": "^1.1.0",
"s2clientprotocol": "^1.0.3",
"tempy": "^0.5.0",
"threading-js": "^1.0.6",
"ws": "^7.3.1"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"jest": "^25.5.4",
"node-pre-gyp": "^0.14.0"
},
"jest": {
"modulePathIgnorePatterns": [
".git",
"/tests/",
"/bin/",
"renderer_human",
"stopwatch_memleak_check"
]
}
}