-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.51 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
{
"name": "dota2-user",
"version": "2.0.3",
"description": "Exposes a simple API for interacting with the Dota 2 game coordinator",
"main": "index.js",
"scripts": {
"build": "./bin/build",
"build-protos": "./bin/build-protos",
"clean": "./bin/clean",
"genny": "./bin/genny",
"lint": "./bin/lint",
"lint:fix": "./bin/lint --fix",
"pull-protos": "./bin/pull-protos",
"set-env": "./bin/set-env",
"test": "./bin/test",
"update-protos": "./bin/update-protos",
"watch": "./bin/watch"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/itsjfx/node-dota2-user.git"
},
"keywords": [
"dota2",
"steam",
"dota",
"dota2-user"
],
"author": "jfx",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/itsjfx/node-dota2-user/issues"
},
"homepage": "https://github.com/itsjfx/node-dota2-user#readme",
"dependencies": {
"bytebuffer": "^5.0.1",
"debug": "^4.3.4",
"ts-proto": "^2.4.1",
"tslib": "^2.6.0"
},
"peerDependencies": {
"steam-user": ">=4.2.0 < 6"
},
"devDependencies": {
"@tsconfig/node14": "^14.1.0",
"@types/debug": "^4.1.7",
"@types/jest": "^29.5.2",
"@types/node": "^22.10.0",
"@types/steam-user": "^5.0.3",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.40.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
}
}