bun-git-hooks 0.1.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +21 -0
- package/README.md +14 -5
- package/dist/cli.js +163 -293
- package/dist/config.d.ts +1 -1
- package/dist/index.js +286 -418
- package/package.json +25 -16
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bun-git-hooks",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1
|
|
4
|
+
"version": "0.2.1",
|
|
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",
|
|
@@ -63,24 +63,33 @@
|
|
|
63
63
|
"dev:docs": "bun --bun vitepress dev docs",
|
|
64
64
|
"build:docs": "bun --bun vitepress build docs",
|
|
65
65
|
"preview:docs": "bun --bun vitepress preview docs",
|
|
66
|
-
"typecheck": "bun --bun tsc --noEmit"
|
|
66
|
+
"typecheck": "bun --bun tsc --noEmit",
|
|
67
|
+
"zip": "bun run zip:all",
|
|
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"
|
|
67
74
|
},
|
|
68
75
|
"devDependencies": {
|
|
69
|
-
"@iconify-json/carbon": "^1.2.
|
|
70
|
-
"@shikijs/vitepress-twoslash": "^
|
|
71
|
-
"@stacksjs/eslint-config": "^4.2
|
|
72
|
-
"@types/bun": "^1.2.
|
|
73
|
-
"@
|
|
74
|
-
"
|
|
76
|
+
"@iconify-json/carbon": "^1.2.8",
|
|
77
|
+
"@shikijs/vitepress-twoslash": "^3.2.1",
|
|
78
|
+
"@stacksjs/eslint-config": "^4.10.2-beta.3",
|
|
79
|
+
"@types/bun": "^1.2.8",
|
|
80
|
+
"@types/node": "^22.13.14",
|
|
81
|
+
"@vite-pwa/vitepress": "^1.0.0",
|
|
82
|
+
"bumpp": "^10.1.0",
|
|
75
83
|
"bun-plugin-dtsx": "^0.21.9",
|
|
76
|
-
"bunfig": "^0.
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"
|
|
82
|
-
"unplugin-
|
|
83
|
-
"
|
|
84
|
+
"bunfig": "^0.8.2",
|
|
85
|
+
"cac": "^6.7.14",
|
|
86
|
+
"changelogen": "^0.6.1",
|
|
87
|
+
"lint-staged": "^15.5.0",
|
|
88
|
+
"typescript": "^5.8.2",
|
|
89
|
+
"unocss": "^66.0.0",
|
|
90
|
+
"unplugin-icons": "^22.1.0",
|
|
91
|
+
"unplugin-vue-components": "^28.4.1",
|
|
92
|
+
"vite-plugin-pwa": "^1.0.0",
|
|
84
93
|
"vitepress": "^1.6.3"
|
|
85
94
|
},
|
|
86
95
|
"overrides": {
|