-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 995 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 995 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
36
37
38
39
{
"name": "@node-sc2/proto",
"version": "0.5.7",
"description": "Node.js transport client implementation of sc2client-proto definition - used for interfacing scripted and/or ML agents with Starcraft 2",
"main": "client.js",
"typings": "client.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/node-sc2/proto.git"
},
"keywords": [
"s2client-proto",
"sc2",
"sc2-proto",
"node-sc2-proto"
],
"author": "Jared Kantrowitz <me@jkantr.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/node-sc2/proto/issues"
},
"homepage": "https://github.com/node-sc2/proto#readme",
"dependencies": {
"@types/ws": "^6.0.1",
"create-event-emitter": "^1.0.0",
"debug": "^4.1.0",
"event-to-promise": "^0.8.0",
"promise-task-queue": "^1.2.0",
"protobufjs": "^6.8.8",
"ws": "^6.1.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.0",
"utf-8-validate": "^5.0.1"
}
}