-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.37 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
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@1claw/cli",
"version": "0.61.22",
"description": "CLI for 1Claw \u2014 secrets management for AI agents and humans",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/1clawAI/1claw-cli"
},
"homepage": "https://1claw.co",
"bin": {
"1claw": "./dist/bin/1claw.js"
},
"type": "module",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && node scripts/copy-assets.mjs",
"prepublishOnly": "npm run build",
"dev": "tsc --watch",
"start": "node dist/bin/1claw.js",
"test": "bash scripts/test-cli.sh",
"lint": "tsc --noEmit",
"clean": "rm -rf dist"
},
"dependencies": {
"chalk": "^5.4.1",
"commander": "^13.1.0",
"conf": "^13.1.0",
"inquirer": "^12.3.2",
"open": "^10.1.0",
"ora": "^8.2.0",
"smol-toml": "^1.9.0",
"yaml": "^2.9.0"
},
"devDependencies": {
"@types/node": "^22.13.4",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=20"
},
"overrides": {
"fast-uri": ">=3.1.2"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"1claw",
"secrets",
"vault",
"cli",
"ai-agents",
"devops",
"ci-cd",
"npm",
"credentials",
"api-keys",
"mcp",
"zero-trust"
],
"optionalDependencies": {
"@1claw/browser-bridge": "^0.1.0"
}
}