vibecop 0.3.0 → 0.3.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/package.json +14 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vibecop",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "AI code quality toolkit — deterministic linter for the AI coding era",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -12,7 +12,8 @@
|
|
|
12
12
|
"test": "bun test",
|
|
13
13
|
"lint": "bunx biome check",
|
|
14
14
|
"typecheck": "bunx tsc --noEmit",
|
|
15
|
-
"
|
|
15
|
+
"test:install": "bash scripts/test-install.sh",
|
|
16
|
+
"prepublishOnly": "bun run lint && bun run typecheck && bun test && bun run build && bun run test:install"
|
|
16
17
|
},
|
|
17
18
|
"files": [
|
|
18
19
|
"dist/cli.js",
|
|
@@ -56,6 +57,17 @@
|
|
|
56
57
|
"yaml": "^2.7.1",
|
|
57
58
|
"zod": "^3.24.4"
|
|
58
59
|
},
|
|
60
|
+
"optionalDependencies": {
|
|
61
|
+
"@ast-grep/napi-darwin-arm64": "^0.42.0",
|
|
62
|
+
"@ast-grep/napi-darwin-x64": "^0.42.0",
|
|
63
|
+
"@ast-grep/napi-linux-x64-gnu": "^0.42.0",
|
|
64
|
+
"@ast-grep/napi-linux-x64-musl": "^0.42.0",
|
|
65
|
+
"@ast-grep/napi-linux-arm64-gnu": "^0.42.0",
|
|
66
|
+
"@ast-grep/napi-linux-arm64-musl": "^0.42.0",
|
|
67
|
+
"@ast-grep/napi-win32-x64-msvc": "^0.42.0",
|
|
68
|
+
"@ast-grep/napi-win32-arm64-msvc": "^0.42.0",
|
|
69
|
+
"@ast-grep/napi-win32-ia32-msvc": "^0.42.0"
|
|
70
|
+
},
|
|
59
71
|
"devDependencies": {
|
|
60
72
|
"@actions/core": "^3.0.0",
|
|
61
73
|
"@actions/github": "^9.0.0",
|