-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.74 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
{
"name": "brewy",
"version": "1.0.0",
"module": "src/index.ts",
"type": "module",
"scripts": {
"start": "bun src/index.ts",
"compile": "bun build src/main.ts --compile --outfile brewy",
"build:linux": "bun build --compile --target=bun-linux-x64 ./src/index.ts --outfile=./dist/brewy-linux",
"build:linux-baseline": "bun build --compile --target=bun-linux-x64-baseline ./src/index.ts --outfile=./dist/brewy-linux-baseline",
"build:linux-modern": "bun build --compile --target=bun-linux-x64-modern ./src/index.ts --outfile=./dist/brewy-linux-modern",
"build:arm64": "bun build --compile --target=bun-linux-arm64 ./src/index.ts --outfile=./dist/brewy-arm64",
"build:windows": "bun build --compile --target=bun-windows-x64 ./src/index.ts --outfile=./dist/brewy-windows",
"build:windows-baseline": "bun build --compile --target=bun-windows-x64-baseline ./src/index.ts --outfile=./dist/brewy-windows-baseline",
"build:windows-modern": "bun build --compile --target=bun-windows-x64-modern ./src/index.ts --outfile=./dist/brewy-windows-modern",
"build:darwin-arm64": "bun build --compile --target=bun-darwin-arm64 ./src/index.ts --outfile=./dist/brewy-darwin-arm64",
"build:darwin-x64": "bun build --compile --target=bun-darwin-x64 ./src/index.ts --outfile=./dist/brewy-darwin-x64",
"build": "npm run build:linux && npm run build:windows && npm run build:darwin-x64 && npm run build:darwin-arm64",
"homebrew": "bun run build && tar -czvf binaries.tar.gz ./dist/"
},
"devDependencies": {
"@types/bun": "latest",
"nodemon": "^3.1.7",
"prettier": "^3.4.1"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"commander": "^12.1.0",
"consola": "^3.2.3",
"ora": "^8.1.1"
}
}