-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "degoog-cli",
"version": "0.5.0",
"description": "CLI toolset for degoog",
"type": "module",
"scripts": {
"dev": "bun run src/index.ts",
"build": "bun run build:linux-x64 && bun run build:linux-arm64 && bun run build:mac-x64 && bun run build:mac-arm64 && bun run build:win",
"build:linux-x64": "bun build --compile --target=bun-linux-x64 src/index.ts --outfile dist/degoog-cli-linux-x64",
"build:linux-arm64": "bun build --compile --target=bun-linux-arm64 src/index.ts --outfile dist/degoog-cli-linux-arm64",
"build:mac-x64": "bun build --compile --target=bun-darwin-x64 src/index.ts --outfile dist/degoog-cli-darwin-x64",
"build:mac-arm64": "bun build --compile --target=bun-darwin-arm64 src/index.ts --outfile dist/degoog-cli-darwin-arm64",
"build:win": "bun build --compile --target=bun-windows-x64 src/index.ts --outfile dist/degoog-cli-windows-x64.exe",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@clack/prompts": "^0.9.1"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.8.3"
}
}