-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.5 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.5 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
{
"name": "steam-nodejs",
"description": "A Node.js library for the Steam Web API",
"version": "0.3.9",
"type": "module",
"files": [
"dist"
],
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"homepage": "https://github.com/mattpua/steam-nodejs#readme",
"bugs": {
"url": "https://github.com/mattpua/steam-nodejs/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mattpua/steam-nodejs.git"
},
"keywords": [
"steam",
"api",
"nodejs",
"unofficial",
"steamworks"
],
"scripts": {
"build": "bunup",
"dev": "bunup --watch",
"postinstall": "bun simple-git-hooks",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"release": "bun run build && bumpp --commit --push --tag",
"test": "bun test",
"test:coverage": "bun test --coverage",
"test:watch": "bun test --watch",
"type-check": "tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@types/bun": "^1.3.3",
"@types/node-steam-openid": "^1.0.3",
"bumpp": "^10.3.2",
"bunup": "^0.16.10",
"simple-git-hooks": "^2.13.1",
"typescript": "^5.9.3"
},
"peerDependencies": {
"typescript": ">=4.5.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"simple-git-hooks": {
"pre-commit": "bun run lint && bun run type-check"
},
"dependencies": {
"zod": "^4.1.13"
}
}