-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.22 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.22 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
{
"name": "secretless-ai",
"version": "0.15.0",
"description": "One command to keep secrets out of AI. Works with Claude Code, Cursor, Copilot, Windsurf, and any AI coding tool.",
"license": "Apache-2.0",
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"secretless-ai": "dist/cli.js",
"secretless-mcp": "dist/mcp-wrapper.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "vitest run",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"ai",
"secrets",
"credentials",
"security",
"claude",
"cursor",
"copilot",
"windsurf",
"cline",
"aider",
"mcp",
"mcp-security",
"mcp-secrets"
],
"repository": {
"type": "git",
"url": "https://github.com/opena2a-org/secretless-ai"
},
"homepage": "https://github.com/opena2a-org/secretless-ai",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^25.5.0",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
},
"optionalDependencies": {
"@nanomind/engine": "^0.1.1",
"@nanomind/guard": "^0.1.1",
"@opena2a/aim-core": ">=0.2.0"
}
}