-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 820 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "steam-inventory-cli",
"version": "1.0.0",
"packageManager": "bun@1.3.2",
"scripts": {
"dev": "bun run --watch src/index.ts",
"build:base": "bun build --compile --minify --compile-autoload-dotenv src/index.ts",
"build:windows": "bun run build:base --target=bun-windows-x64 --outfile dist/steam-inventory-cli.exe",
"build:linux": "bun run build:base --target=bun-linux-x64 --outfile dist/steam-inventory-cli",
"build": "bun run build:windows && bun run build:linux",
"start": "bun run src/index.ts",
"lint": "biome check",
"lint:fix": "biome check --write",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "2.3.6",
"@types/bun": "1.3.2",
"typescript": "^5.9.3"
}
}