-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.54 KB
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
50
51
52
53
54
55
56
57
58
59
{
"name": "@khaentertainment/clawvault",
"version": "0.2.0",
"type": "module",
"description": "Secure secret management for OpenClaw - combines Confidant UX with Secret Manager security",
"main": "dist/index.js",
"bin": {
"clawvault": "./dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest --config=jest.config.cjs",
"lint": "eslint src --ext .ts",
"audit:security": "npm audit --audit-level=high",
"start": "node dist/cli.js"
},
"keywords": [
"openclaw",
"secrets",
"security",
"keyring",
"vault"
],
"author": "Billy <billy@openclaw.dev>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/KHAEntertainment/clawvault.git"
},
"bugs": {
"url": "https://github.com/KHAEntertainment/clawvault/issues"
},
"homepage": "https://github.com/KHAEntertainment/clawvault#readme",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.0.0",
"cors": "^2.8.6",
"express": "^4.18.2",
"express-rate-limit": "^8.2.1",
"helmet": "^8.1.0",
"inquirer": "^9.2.0"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^4.17.20",
"@types/inquirer": "^9.0.0",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.50.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.0",
"supertest": "^6.3.4",
"@types/supertest": "^6.0.2",
"typescript": "^5.2.0"
}
}