-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.13 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.13 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@node9/proxy",
"version": "1.0.13",
"description": "The Sudo Command for AI Agents. Execution Security for Claude Code & MCP.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"bin": {
"node9": "./dist/cli.js"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/node9-ai/node9-proxy.git"
},
"bugs": {
"url": "https://github.com/node9-ai/node9-proxy/issues"
},
"homepage": "https://github.com/node9-ai/node9-proxy#readme",
"keywords": [
"ai-security",
"mcp",
"mcp-proxy",
"claude-code",
"gemini-cli",
"cursor",
"agentic-ai",
"agent-security",
"sudo",
"security-proxy",
"human-in-the-loop",
"hitl"
],
"author": "Nadav <nadav@node9.ai>",
"license": "Apache-2.0",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"demo": "tsx examples/demo.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"fix": "npm run format && npm run lint:fix",
"validate": "npm run format && npm run lint && npm run typecheck && npm run test && npm run test:e2e && npm run build",
"test:e2e": "NODE9_TESTING=1 bash scripts/e2e.sh",
"prepublishOnly": "npm run validate",
"test": "NODE_ENV=test vitest --run",
"test:watch": "NODE_ENV=test vitest",
"test:ui": "NODE_ENV=test vitest --ui"
},
"dependencies": {
"@inquirer/prompts": "^8.3.0",
"chalk": "^4.1.2",
"commander": "^14.0.3",
"execa": "^9.6.1",
"picomatch": "^4.0.3",
"sh-syntax": "^0.5.8",
"zod": "^3.25.76"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"@octokit/rest": "^22.0.1",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/node": "^25.3.1",
"@types/picomatch": "^4.0.2",
"prettier": "^3.4.2",
"semantic-release": "^25.0.3",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.20.0",
"vitest": "^4.0.18"
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"assets": [
"dist/*.js",
"dist/*.mjs"
]
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json",
"package-lock.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}