-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 970 Bytes
/
package.json
File metadata and controls
49 lines (49 loc) · 970 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "@botiverse/agent-vault",
"version": "0.4.0",
"description": "Keep your secrets hidden from AI agents.",
"license": "Apache-2.0",
"type": "module",
"bin": {
"agent-vault": "dist/cli.js"
},
"files": [
"dist",
"skills",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"start": "node dist/cli.js",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "npm run build"
},
"dependencies": {
"commander": "^14.0.3"
},
"devDependencies": {
"@types/node": "^25.3.0",
"@vitest/coverage-v8": "^4.0.18",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/botiverse/agent-vault.git"
},
"keywords": [
"agent",
"vault",
"secrets",
"cli",
"ai",
"security",
"redaction"
]
}