-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.09 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.09 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
{
"name": "sub2fab",
"module": "index.ts",
"version": "0.1.3",
"scripts": {
"build": "bun build --compile --minify --sourcemap ./src/cli.ts",
"build:win:x64": "bun run build --target=bun-windows-x64 --outfile dist/sub2fab-win-x64.exe",
"build:mac:x64": "bun run build --target=bun-darwin-x64 --outfile dist/sub2fab-darwin-x64",
"build:mac:arm": "bun run build --target=bun-darwin-arm64 --outfile dist/sub2fab-darwin-arm64",
"build:linux:x64": "bun run build --target=bun-linux-x64 --outfile dist/sub2fab-linux-x64",
"build:linux:arm": "bun run build --target=bun-linux-arm64 --outfile dist/sub2fab-linux-arm64",
"build:all": "bun build:win:x64 && bun build:mac:x64 && bun build:mac:arm && bun build:linux:x64 && bun build:linux:arm",
"fix": "biome check . --write",
"format": "biome format . --write"
},
"devDependencies": {
"@biomejs/biome": "^2.2.4",
"@types/argparse": "^2.0.17",
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"private": true,
"type": "module",
"dependencies": {
"argparse": "^2.0.1"
}
}