proxy/package.json
2026-06-30 23:00:35 +08:00

23 lines
868 B
JSON

{
"name": "local-mitm-proxy",
"version": "0.1.0",
"private": true,
"description": "Local HTTP/HTTPS debugging proxy with custom CA and domain-scoped MITM interception.",
"main": "src/proxy.js",
"type": "commonjs",
"scripts": {
"start": "node src/proxy.js",
"cert:generate": "node scripts/generate-ca.js",
"cert:install:windows": "powershell -ExecutionPolicy Bypass -File scripts/install-root-ca-windows.ps1",
"cert:uninstall:windows": "powershell -ExecutionPolicy Bypass -File scripts/uninstall-root-ca-windows.ps1",
"proxy:enable:windows": "powershell -ExecutionPolicy Bypass -File scripts/set-windows-proxy.ps1 -Enable",
"proxy:disable:windows": "powershell -ExecutionPolicy Bypass -File scripts/set-windows-proxy.ps1 -Disable"
},
"dependencies": {
"node-forge": "^1.3.1"
},
"engines": {
"node": ">=18"
}
}