-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.3 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.3 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "steam-types",
"type": "module",
"version": "2.1.0",
"author": "BossSloth",
"description": "TypeScript type definitions for the Steam client",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"patches"
],
"exports": {
".": "./dist/index.js",
"./Global/*": "./dist/types/Global/*.js",
"./Modules/*": "./dist/types/Modules/*.js",
"./Protobufs/*": "./dist/types/Protobufs/*.js",
"./Runtime/*": "./dist/Runtime/*.js",
"./*": "./dist/*.js"
},
"scripts": {
"build": "rm -rf dist && tsc --project tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"watch": "tsc -w --project tsconfig.build.json",
"build-convert-debug": "esbuild scripts/convert-to-typescript/test.ts --bundle --format=iife --platform=browser --outfile=build/scripts/convert-to-typescript.js",
"build-convert": "bun build-convert-debug --minify-identifiers --minify-syntax",
"validate-types": "bun scripts/validate-types.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"knip": "knip",
"lint": "knip ; eslint",
"lint:fix": "knip --fix ; eslint --fix",
"prepublishOnly": "bun run build",
"proto:generate": "bun run scripts/proto-scripts/generate-protobufs.ts",
"proto:watch": "bun run --watch scripts/proto-scripts/generate-protobufs.ts"
},
"keywords": [
"steam",
"types",
"typescript",
"definitions",
"interface",
"valve"
],
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.39.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@steambrew/client": "^5.8.3",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/chrome-remote-interface": "^0.33.0",
"@types/cli-progress": "^3.11.6",
"@types/history": "^4.7.11",
"@types/node": "^24.10.3",
"@typescript-eslint/parser": "^8.57.2",
"@vitest/coverage-v8": "^3.2.4",
"ansi-regex": "^6.2.2",
"chalk": "^5.6.2",
"chrome-remote-interface": "^0.34.0",
"cli-progress": "^3.12.0",
"commander": "^14.0.3",
"dedent": "^1.7.2",
"diff": "^8.0.4",
"esbuild": "^0.25.12",
"eslint": "^9.39.1",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^61.7.1",
"eslint-plugin-perfectionist": "^4.15.1",
"globals": "^17.4.0",
"knip": "^6.1.0",
"protobufjs": "^8.0.0",
"semantic-release": "^25.0.3",
"strip-ansi": "^7.2.0",
"ts-morph": "27.0.2",
"tsc-alias": "^1.8.16",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2",
"vitest": "^3.2.4"
},
"dependencies": {
"@tanstack/query-core": "^5.95.2",
"@types/google-protobuf": "^3.15.12",
"@types/react-dom": "^19.2.3",
"long": "^5.3.2",
"mobx": "^6.15.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BossSloth/SteamTypes.git"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@steambrew/client": "^5.8.3"
},
"peerDependenciesMeta": {
"@steambrew/client": {
"optional": true
}
},
"patchedDependencies": {
"@steambrew/client@5.8.3": "patches/@steambrew%2Fclient@5.8.3.patch"
}
}