forked from DoctorMcKay/node-steamcommunity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.74 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
{
"name": "steamcommunity-impit",
"version": "4.0.2",
"description": "Provides an interface for logging into and interacting with the Steam Community website",
"types": "index.d.ts",
"scripts": {
"prepublishOnly": "node -e \"const sc = require('./index.js'); const c = new sc({timeout: 5000}); console.log('✓ Package loads OK'); console.log('✓ Impit:', typeof c._impit.fetch === 'function' ? 'ready' : 'MISSING'); console.log('✓ CookieJar:', c._jar ? 'ready' : 'MISSING'); console.log('✓ httpRequest:', typeof c.httpRequest === 'function' ? 'ready' : 'MISSING');\" && npx --yes typescript --noEmit --lib es2020 --module node16 --esModuleInterop --target es2020 --strict --skipLibCheck index.d.ts && echo '✓ Types compile OK'",
"publish:dry": "npm publish --dry-run",
"publish:public": "npm publish --access public"
},
"files": [
"/classes",
"/components",
"/examples",
"/resources",
"/index.js",
"/index.d.ts"
],
"keywords": [
"steam",
"steam community"
],
"homepage": "https://github.com/DoctorMcKay/node-steamcommunity",
"bugs": {
"url": "https://github.com/DoctorMcKay/node-steamcommunity/issues"
},
"license": "MIT",
"author": {
"name": "Alex Corn",
"email": "mckay@doctormckay.com",
"url": "https://www.doctormckay.com"
},
"repository": {
"type": "git",
"url": "https://github.com/jsupa/node-steamcommunity"
},
"dependencies": {
"@doctormckay/user-agents": "^1.0.0",
"async": "^2.6.3",
"cheerio": "0.22.0",
"image-size": "^0.8.2",
"impit": "^0.14.3",
"steam-session": "^1.9.1",
"steam-totp": "^1.5.0",
"steamid": "^1.1.3",
"tough-cookie": "^6.0.2",
"xml2js": "^0.6.2"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@faker-js/faker": "^10.5.0",
"steam-user": "^5.3.0"
}
}