@node9/proxy 1.1.7 → 1.2.0
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/dist/cli.js +3629 -3345
- package/dist/cli.mjs +3662 -3381
- package/dist/index.js +1651 -1620
- package/dist/index.mjs +1649 -1618
- package/package.json +8 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@node9/proxy",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
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",
|
|
@@ -62,9 +62,10 @@
|
|
|
62
62
|
"preuninstall": "node9 uninstall || echo 'node9 uninstall failed — remove hooks manually from ~/.claude/settings.json'",
|
|
63
63
|
"prepublishOnly": "npm run validate",
|
|
64
64
|
"test": "vitest --run",
|
|
65
|
+
"test:coverage": "vitest --run --coverage",
|
|
65
66
|
"test:watch": "vitest",
|
|
66
67
|
"test:ui": "vitest --ui",
|
|
67
|
-
"dev:tail": "node -e \"try{const d=JSON.parse(require('fs').readFileSync(require('os').homedir()+'/.node9/daemon.pid','utf8'));process.kill(
|
|
68
|
+
"dev:tail": "node -e \"try{const d=JSON.parse(require('fs').readFileSync(require('os').homedir()+'/.node9/daemon.pid','utf8'));const pid=d.pid;if(Number.isInteger(pid)&&pid>0&&pid<4194304)process.kill(pid)}catch(e){if(e.code!=='ESRCH'&&e.code!=='ENOENT')process.stderr.write(e.message+'\\n')}\" && npm run build && node dist/cli.js tail"
|
|
68
69
|
},
|
|
69
70
|
"dependencies": {
|
|
70
71
|
"@inquirer/prompts": "^8.3.0",
|
|
@@ -86,13 +87,17 @@
|
|
|
86
87
|
"@semantic-release/release-notes-generator": "^14.1.0",
|
|
87
88
|
"@types/node": "^25.3.1",
|
|
88
89
|
"@types/picomatch": "^4.0.2",
|
|
90
|
+
"@vitest/coverage-v8": "4.1.2",
|
|
89
91
|
"prettier": "^3.4.2",
|
|
90
92
|
"semantic-release": "^25.0.3",
|
|
91
93
|
"tsup": "^8.5.1",
|
|
92
94
|
"tsx": "^4.21.0",
|
|
93
95
|
"typescript": "^5.9.3",
|
|
94
96
|
"typescript-eslint": "^8.20.0",
|
|
95
|
-
"vitest": "
|
|
97
|
+
"vitest": "4.1.2"
|
|
98
|
+
},
|
|
99
|
+
"overrides": {
|
|
100
|
+
"undici": "^7.24.0"
|
|
96
101
|
},
|
|
97
102
|
"publishConfig": {
|
|
98
103
|
"access": "public"
|