-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
65 lines (65 loc) · 1.61 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": "steam-session",
"version": "1.9.0",
"description": "Enables authenticating with Steam",
"keywords": [
"steam"
],
"homepage": "https://github.com/DoctorMcKay/node-steam-session",
"bugs": {
"url": "https://github.com/DoctorMcKay/node-steam-session/issues"
},
"license": "MIT",
"author": {
"name": "Alex Corn",
"email": "[email protected]",
"url": "https://www.doctormckay.com"
},
"repository": {
"type": "git",
"url": "https://github.com/DoctorMcKay/node-steam-session.git"
},
"main": "dist/index.js",
"files": [
"/dist",
"/src"
],
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run test",
"build": "node scripts/delete-dist.js && tsc --outDir dist",
"lint": "npx eslint . --ext .js,.jsx,.ts,.tsx",
"test": "jest",
"generate-enums": "node scripts/generate-enums.js",
"generate-protos": "node scripts/generate-protos.js"
},
"dependencies": {
"@doctormckay/stdlib": "^2.9.0",
"@doctormckay/user-agents": "^1.0.0",
"debug": "^4.3.4",
"kvparser": "^1.0.1",
"node-bignumber": "^1.2.2",
"protobufjs": "^7.1.0",
"socks-proxy-agent": "^7.0.0",
"steamid": "^2.0.0",
"tiny-typed-emitter": "^2.1.0",
"websocket13": "^4.0.0"
},
"devDependencies": {
"@jest/globals": "^28.1.3",
"@types/node": "^12.20.55",
"@typescript-eslint/eslint-plugin": "^5.36.0",
"@typescript-eslint/parser": "^5.36.0",
"eslint": "^8.23.0",
"jest": "^28.1.3",
"protobufjs-cli": "^1.1.1",
"steam-totp": "^2.1.2",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typedoc": "^0.24.8",
"typescript": "^4.8.2"
},
"engines": {
"node": ">=12.22.0"
}
}