-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.75 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
{
"name": "@steamlab/steam-web",
"version": "0.0.1",
"description": "A Node.js library for interacting with steamcommunity.com, providing unofficial APIs.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"types": "./dist/index.d.cts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"keywords": [
"steam",
"steamcommunity",
"steam api",
"steam web"
],
"scripts": {
"postinstall": "test -f .git/config && husky || true",
"dev": "tsx watch src/index.ts",
"type-check": "tsc",
"check": "biome check .",
"fix": "biome check --write .",
"test": "vitest --run",
"test:coverage": "vitest --run --coverage --exclude '**/*.integration.test.ts'",
"test:live": "vitest --run --config vitest.live.config.ts tests/integration/steam-web.integration.test.ts",
"test:fetch": "node --experimental-strip-types tests/support/run-fetch-integration.ts",
"build": "tsdown",
"prepublishOnly": "npm run build"
},
"lint-staged": {
"*.{ts,js,json,md}": [
"biome check --write --no-errors-on-unmatched"
]
},
"author": "Francisco Castro",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/steamlab-dev/steam-web.git"
},
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.0",
"dotenv": "^16.0.2",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"tsdown": "^0.21.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"dependencies": {
"http-proxy-agent": "^8.0.0",
"socks-proxy-agent": "^9.0.0"
}
}