|
1 | 1 | { |
2 | 2 | "name": "bun-git-hooks", |
3 | 3 | "type": "module", |
4 | | - "version": "0.2.9", |
| 4 | + "version": "0.2.10", |
5 | 5 | "description": "A modern, zero dependency tool for managing git hooks in Bun projects.", |
6 | 6 | "author": "Chris Breuer <chris@stacksjs.org>", |
7 | 7 | "license": "MIT", |
|
44 | 44 | "files": ["README.md", "dist"], |
45 | 45 | "scripts": { |
46 | 46 | "build": "bun build.ts && bun run compile", |
47 | | - "compile": "bun build ./bin/cli.ts --compile --minify --outfile bin/git-hooks", |
| 47 | + "compile": "bun build ./bin/cli.ts --compile --minify --outfile dist/cli.js", |
48 | 48 | "compile:all": "bun run compile:linux-x64 && bun run compile:linux-arm64 && bun run compile:windows-x64 && bun run compile:darwin-x64 && bun run compile:darwin-arm64", |
49 | | - "compile:linux-x64": "bun build ./bin/cli.ts --compile --minify --target=bun-linux-x64 --outfile bin/git-hooks-linux-x64", |
50 | | - "compile:linux-arm64": "bun build ./bin/cli.ts --compile --minify --target=bun-linux-arm64 --outfile bin/git-hooks-linux-arm64", |
51 | | - "compile:windows-x64": "bun build ./bin/cli.ts --compile --minify --target=bun-windows-x64 --outfile bin/git-hooks-windows-x64.exe", |
52 | | - "compile:darwin-x64": "bun build ./bin/cli.ts --compile --minify --target=bun-darwin-x64 --outfile bin/git-hooks-darwin-x64", |
53 | | - "compile:darwin-arm64": "bun build ./bin/cli.ts --compile --minify --target=bun-darwin-arm64 --outfile bin/git-hooks-darwin-arm64", |
| 49 | + "compile:linux-x64": "bun build ./bin/cli.ts --compile --minify --target=bun-linux-x64 --outfile dist/git-hooks-linux-x64", |
| 50 | + "compile:linux-arm64": "bun build ./bin/cli.ts --compile --minify --target=bun-linux-arm64 --outfile dist/git-hooks-linux-arm64", |
| 51 | + "compile:windows-x64": "bun build ./bin/cli.ts --compile --minify --target=bun-windows-x64 --outfile dist/git-hooks-windows-x64.exe", |
| 52 | + "compile:darwin-x64": "bun build ./bin/cli.ts --compile --minify --target=bun-darwin-x64 --outfile dist/git-hooks-darwin-x64", |
| 53 | + "compile:darwin-arm64": "bun build ./bin/cli.ts --compile --minify --target=bun-darwin-arm64 --outfile dist/git-hooks-darwin-arm64", |
54 | 54 | "postinstall": "bun ./scripts/postinstall.ts", |
55 | 55 | "uninstall": "bun ./scripts/uninstall.ts", |
56 | 56 | "lint": "bunx --bun eslint .", |
|
66 | 66 | "typecheck": "bun --bun tsc --noEmit", |
67 | 67 | "zip": "bun run zip:all", |
68 | 68 | "zip:all": "bun run zip:linux-x64 && bun run zip:linux-arm64 && bun run zip:windows-x64 && bun run zip:darwin-x64 && bun run zip:darwin-arm64", |
69 | | - "zip:linux-x64": "zip -j bin/git-hooks-linux-x64.zip bin/git-hooks-linux-x64", |
70 | | - "zip:linux-arm64": "zip -j bin/git-hooks-linux-arm64.zip bin/git-hooks-linux-arm64", |
71 | | - "zip:windows-x64": "zip -j bin/git-hooks-windows-x64.zip bin/git-hooks-windows-x64.exe", |
72 | | - "zip:darwin-x64": "zip -j bin/git-hooks-darwin-x64.zip bin/git-hooks-darwin-x64", |
73 | | - "zip:darwin-arm64": "zip -j bin/git-hooks-darwin-arm64.zip bin/git-hooks-darwin-arm64" |
| 69 | + "zip:linux-x64": "zip -j dist/git-hooks-linux-x64.zip dist/git-hooks-linux-x64", |
| 70 | + "zip:linux-arm64": "zip -j dist/git-hooks-linux-arm64.zip dist/git-hooks-linux-arm64", |
| 71 | + "zip:windows-x64": "zip -j dist/git-hooks-windows-x64.zip dist/git-hooks-windows-x64.exe", |
| 72 | + "zip:darwin-x64": "zip -j dist/git-hooks-darwin-x64.zip dist/git-hooks-darwin-x64", |
| 73 | + "zip:darwin-arm64": "zip -j dist/git-hooks-darwin-arm64.zip dist/git-hooks-darwin-arm64" |
74 | 74 | }, |
75 | 75 | "devDependencies": { |
76 | 76 | "@iconify-json/carbon": "^1.2.8", |
|
0 commit comments