vibesafu 0.1.0
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 +247 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1447 -0
- package/package.json +54 -0
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "vibesafu",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Claude Code Security Guard - Permission request interceptor with LLM-powered security analysis",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"vibesafu": "dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist"
|
|
12
|
+
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"dev": "tsup src/index.ts --watch --format esm",
|
|
15
|
+
"build": "tsup src/index.ts --format esm --dts",
|
|
16
|
+
"test": "vitest run",
|
|
17
|
+
"test:watch": "vitest",
|
|
18
|
+
"test:coverage": "vitest run --coverage",
|
|
19
|
+
"typecheck": "tsc --noEmit",
|
|
20
|
+
"verify": "pnpm typecheck && pnpm test",
|
|
21
|
+
"prepublishOnly": "pnpm verify && pnpm build"
|
|
22
|
+
},
|
|
23
|
+
"keywords": [
|
|
24
|
+
"claude-code",
|
|
25
|
+
"security",
|
|
26
|
+
"hook",
|
|
27
|
+
"permission",
|
|
28
|
+
"cli",
|
|
29
|
+
"anthropic",
|
|
30
|
+
"llm"
|
|
31
|
+
],
|
|
32
|
+
"author": "kevin-hs-sohn",
|
|
33
|
+
"license": "MIT",
|
|
34
|
+
"repository": {
|
|
35
|
+
"type": "git",
|
|
36
|
+
"url": "https://github.com/kevin-hs-sohn/vibesafu.git"
|
|
37
|
+
},
|
|
38
|
+
"homepage": "https://github.com/kevin-hs-sohn/vibesafu#readme",
|
|
39
|
+
"bugs": {
|
|
40
|
+
"url": "https://github.com/kevin-hs-sohn/vibesafu/issues"
|
|
41
|
+
},
|
|
42
|
+
"engines": {
|
|
43
|
+
"node": ">=18.0.0"
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"@anthropic-ai/sdk": "^0.30.0"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@types/node": "^20.0.0",
|
|
50
|
+
"tsup": "^8.0.0",
|
|
51
|
+
"typescript": "^5.4.0",
|
|
52
|
+
"vitest": "^2.0.0"
|
|
53
|
+
}
|
|
54
|
+
}
|