@vigil-guard/vge-cc-guard 0.9.0-beta.1 → 0.9.0-beta.2
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/README.md +1 -1
- package/package.json +18 -16
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ Code hooks, gates tool calls before execution, sends configured prompt and tool
|
|
|
5
5
|
content to Vigil Guard Enterprise (VGE), manages user decisions for blocked
|
|
6
6
|
content, and writes a private local audit trail.
|
|
7
7
|
|
|
8
|
-
Current package version: `0.9.0-beta.
|
|
8
|
+
Current package version: `0.9.0-beta.2`.
|
|
9
9
|
|
|
10
10
|
## Current State
|
|
11
11
|
|
package/package.json
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vigil-guard/vge-cc-guard",
|
|
3
|
-
"version": "0.9.0-beta.
|
|
3
|
+
"version": "0.9.0-beta.2",
|
|
4
4
|
"description": "Security sidecar for Claude Code — gates tool calls, scans outputs via VGE",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
7
7
|
"author": "Vigil Guard",
|
|
8
8
|
"publishConfig": {
|
|
9
|
-
"access": "public"
|
|
10
|
-
"provenance": true
|
|
9
|
+
"access": "public"
|
|
11
10
|
},
|
|
12
11
|
"homepage": "https://github.com/Vigil-Guard/vge-cc-guard#readme",
|
|
13
12
|
"repository": {
|
|
@@ -31,6 +30,7 @@
|
|
|
31
30
|
"engines": {
|
|
32
31
|
"node": ">=20.10.0"
|
|
33
32
|
},
|
|
33
|
+
"packageManager": "pnpm@10.28.1",
|
|
34
34
|
"bin": {
|
|
35
35
|
"vge-cc-guard": "./dist/cli.js"
|
|
36
36
|
},
|
|
@@ -40,6 +40,20 @@
|
|
|
40
40
|
"README.md",
|
|
41
41
|
"LICENSE.md"
|
|
42
42
|
],
|
|
43
|
+
"scripts": {
|
|
44
|
+
"clean": "node -e \"const fs=require('fs'); fs.rmSync('dist',{recursive:true,force:true})\"",
|
|
45
|
+
"build": "pnpm clean && tsc -p tsconfig.json",
|
|
46
|
+
"postbuild": "node -e \"if(process.platform!=='win32') require('fs').chmodSync('dist/cli.js',0o755)\"",
|
|
47
|
+
"build:watch": "tsc -p tsconfig.json --watch",
|
|
48
|
+
"test": "vitest run",
|
|
49
|
+
"test:watch": "vitest",
|
|
50
|
+
"test:coverage": "vitest run --coverage",
|
|
51
|
+
"bench": "VGE_CC_GUARD_BENCH=1 vitest run tests/integration/pretool-latency.bench.test.ts",
|
|
52
|
+
"lint": "eslint src tests",
|
|
53
|
+
"typecheck": "tsc --noEmit",
|
|
54
|
+
"prepublishOnly": "pnpm typecheck && pnpm lint && pnpm test:coverage && pnpm build",
|
|
55
|
+
"prepare": "git config core.hooksPath .githooks 2>/dev/null || true"
|
|
56
|
+
},
|
|
43
57
|
"dependencies": {
|
|
44
58
|
"express": "^5.2.1",
|
|
45
59
|
"ink": "^4.4.1",
|
|
@@ -58,17 +72,5 @@
|
|
|
58
72
|
"ink-testing-library": "^4.0.0",
|
|
59
73
|
"typescript": "^5.7.2",
|
|
60
74
|
"vitest": "^4.1.5"
|
|
61
|
-
},
|
|
62
|
-
"scripts": {
|
|
63
|
-
"clean": "node -e \"const fs=require('fs'); fs.rmSync('dist',{recursive:true,force:true})\"",
|
|
64
|
-
"build": "pnpm clean && tsc -p tsconfig.json",
|
|
65
|
-
"postbuild": "node -e \"if(process.platform!=='win32') require('fs').chmodSync('dist/cli.js',0o755)\"",
|
|
66
|
-
"build:watch": "tsc -p tsconfig.json --watch",
|
|
67
|
-
"test": "vitest run",
|
|
68
|
-
"test:watch": "vitest",
|
|
69
|
-
"test:coverage": "vitest run --coverage",
|
|
70
|
-
"bench": "VGE_CC_GUARD_BENCH=1 vitest run tests/integration/pretool-latency.bench.test.ts",
|
|
71
|
-
"lint": "eslint src tests",
|
|
72
|
-
"typecheck": "tsc --noEmit"
|
|
73
75
|
}
|
|
74
|
-
}
|
|
76
|
+
}
|