-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.82 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "buncli",
"version": "0.1.0",
"description": "A single-file Bun CLI template built with Commander and @inquirer/prompts, compilable to a standalone binary.",
"module": "index.ts",
"type": "module",
"author": "Seth Davis",
"license": "MIT",
"homepage": "https://github.com/sethdavis512/buncli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/sethdavis512/buncli.git"
},
"bugs": {
"url": "https://github.com/sethdavis512/buncli/issues"
},
"keywords": [
"bun",
"cli",
"typescript",
"commander",
"inquirer",
"cli-template",
"template",
"standalone-binary"
],
"scripts": {
"start": "bun run index.ts",
"compile": "bun build --compile --minify --bytecode ./index.ts --outfile dist/buncli",
"compile:linux-x64": "bun build --compile --minify --bytecode --target=bun-linux-x64 ./index.ts --outfile dist/buncli-linux-x64",
"compile:linux-arm64": "bun build --compile --minify --bytecode --target=bun-linux-arm64 ./index.ts --outfile dist/buncli-linux-arm64",
"compile:darwin-x64": "bun build --compile --minify --bytecode --target=bun-darwin-x64 ./index.ts --outfile dist/buncli-darwin-x64",
"compile:darwin-arm64": "bun build --compile --minify --bytecode --target=bun-darwin-arm64 ./index.ts --outfile dist/buncli-darwin-arm64",
"compile:windows-x64": "bun build --compile --minify --bytecode --target=bun-windows-x64 ./index.ts --outfile dist/buncli-windows-x64",
"compile:all": "bun run compile:linux-x64 && bun run compile:linux-arm64 && bun run compile:darwin-x64 && bun run compile:darwin-arm64 && bun run compile:windows-x64"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@inquirer/prompts": "^8.3.0",
"commander": "^14.0.3"
}
}