-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.66 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-sessions-creator",
"version": "3.2.5",
"description": "Simple app for creating and updating Steam sessions",
"author": "Sadzurami (https://github.com/Sadzurami)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Sadzurami/steam-sessions-creator.git"
},
"engines": {
"node": ">=18"
},
"bin": "dist/main.js",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"scripts": {
"build": "del-cli dist && tsc",
"build:package": "del-cli package && npm run build && pkg package.json --compress GZip",
"start:prod": "node dist/main.js",
"start:dev": "tsx src/main.ts",
"format": "prettier 'src/**/*.ts' --write",
"lint": "eslint 'src/**/*.ts'",
"prepare": "npm run build"
},
"dependencies": {
"@sadzurami/logger": "^1.0.1",
"close-with-grace": "^2.1.0",
"commander": "^12.1.0",
"console-title": "^1.1.0",
"fs-extra": "^11.2.0",
"hpagent": "^1.2.0",
"p-queue": "^6",
"read-pkg-up": "^7",
"steam-session": "^1.9.0",
"steam-totp": "^2.1.2"
},
"devDependencies": {
"@sadzurami/eslint-config": "^1.0.1",
"@sadzurami/prettier-config": "^1.0.0",
"@sadzurami/ts-config": "^1.0.1",
"@types/fs-extra": "^11.0.4",
"@types/node": "^18",
"@types/steam-totp": "^2.1.2",
"del-cli": "^6.0.0",
"eslint": "^8",
"pkg": "^5.8.1",
"prettier": "^3.3.3",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
},
"pkg": {
"scripts": [
"dist/**/*.js"
],
"assets": [
"package.json",
"node_modules/@doctormckay/steam-crypto"
],
"targets": [
"node18"
],
"outputPath": "package"
}
}