@node9/proxy 0.2.1 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +66 -319
- package/dist/cli.js +1417 -608
- package/dist/cli.mjs +1417 -608
- package/dist/index.js +722 -261
- package/dist/index.mjs +722 -261
- package/package.json +44 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@node9/proxy",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "The Sudo Command for AI Agents. Execution Security for Claude Code & MCP.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -20,12 +20,12 @@
|
|
|
20
20
|
},
|
|
21
21
|
"repository": {
|
|
22
22
|
"type": "git",
|
|
23
|
-
"url": "git+https://github.com/
|
|
23
|
+
"url": "git+https://github.com/node9-ai/node9-proxy.git"
|
|
24
24
|
},
|
|
25
25
|
"bugs": {
|
|
26
|
-
"url": "https://github.com/
|
|
26
|
+
"url": "https://github.com/node9-ai/node9-proxy/issues"
|
|
27
27
|
},
|
|
28
|
-
"homepage": "https://github.com/
|
|
28
|
+
"homepage": "https://github.com/node9-ai/node9-proxy#readme",
|
|
29
29
|
"keywords": [
|
|
30
30
|
"ai-security",
|
|
31
31
|
"mcp",
|
|
@@ -51,8 +51,6 @@
|
|
|
51
51
|
"build": "tsup",
|
|
52
52
|
"dev": "tsup --watch",
|
|
53
53
|
"demo": "tsx examples/demo.ts",
|
|
54
|
-
"test": "vitest run",
|
|
55
|
-
"test:watch": "vitest",
|
|
56
54
|
"typecheck": "tsc --noEmit",
|
|
57
55
|
"lint": "eslint .",
|
|
58
56
|
"lint:fix": "eslint . --fix",
|
|
@@ -60,8 +58,11 @@
|
|
|
60
58
|
"format:check": "prettier --check .",
|
|
61
59
|
"fix": "npm run format && npm run lint:fix",
|
|
62
60
|
"validate": "npm run format && npm run lint && npm run typecheck && npm run test && npm run test:e2e && npm run build",
|
|
63
|
-
"test:e2e": "bash scripts/e2e.sh",
|
|
64
|
-
"prepublishOnly": "npm run validate"
|
|
61
|
+
"test:e2e": "NODE9_TESTING=1 bash scripts/e2e.sh",
|
|
62
|
+
"prepublishOnly": "npm run validate",
|
|
63
|
+
"test": "NODE_ENV=test vitest --run",
|
|
64
|
+
"test:watch": "NODE_ENV=test vitest",
|
|
65
|
+
"test:ui": "NODE_ENV=test vitest --ui"
|
|
65
66
|
},
|
|
66
67
|
"dependencies": {
|
|
67
68
|
"@inquirer/prompts": "^8.3.0",
|
|
@@ -72,9 +73,15 @@
|
|
|
72
73
|
"sh-syntax": "^0.5.8"
|
|
73
74
|
},
|
|
74
75
|
"devDependencies": {
|
|
76
|
+
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
77
|
+
"@semantic-release/git": "^10.0.1",
|
|
78
|
+
"@semantic-release/github": "^12.0.6",
|
|
79
|
+
"@semantic-release/npm": "^13.1.5",
|
|
80
|
+
"@semantic-release/release-notes-generator": "^14.1.0",
|
|
75
81
|
"@types/node": "^25.3.1",
|
|
76
82
|
"@types/picomatch": "^4.0.2",
|
|
77
83
|
"prettier": "^3.4.2",
|
|
84
|
+
"semantic-release": "^25.0.3",
|
|
78
85
|
"tsup": "^8.5.1",
|
|
79
86
|
"tsx": "^4.21.0",
|
|
80
87
|
"typescript": "^5.9.3",
|
|
@@ -83,5 +90,34 @@
|
|
|
83
90
|
},
|
|
84
91
|
"publishConfig": {
|
|
85
92
|
"access": "public"
|
|
93
|
+
},
|
|
94
|
+
"release": {
|
|
95
|
+
"branches": [
|
|
96
|
+
"main"
|
|
97
|
+
],
|
|
98
|
+
"plugins": [
|
|
99
|
+
"@semantic-release/commit-analyzer",
|
|
100
|
+
"@semantic-release/release-notes-generator",
|
|
101
|
+
"@semantic-release/npm",
|
|
102
|
+
[
|
|
103
|
+
"@semantic-release/github",
|
|
104
|
+
{
|
|
105
|
+
"assets": [
|
|
106
|
+
"dist/*.js",
|
|
107
|
+
"dist/*.mjs"
|
|
108
|
+
]
|
|
109
|
+
}
|
|
110
|
+
],
|
|
111
|
+
[
|
|
112
|
+
"@semantic-release/git",
|
|
113
|
+
{
|
|
114
|
+
"assets": [
|
|
115
|
+
"package.json",
|
|
116
|
+
"package-lock.json"
|
|
117
|
+
],
|
|
118
|
+
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
|
|
119
|
+
}
|
|
120
|
+
]
|
|
121
|
+
]
|
|
86
122
|
}
|
|
87
123
|
}
|