@codelook/proxy-server
Version:
HTTP/HTTPS proxy server with Docker deployment and Cloudflare Workers support
69 lines (68 loc) • 1.62 kB
JSON
{
"name": "@codelook/proxy-server",
"version": "0.1.0",
"description": "HTTP/HTTPS proxy server with Docker deployment and Cloudflare Workers support",
"keywords": [
"proxy",
"http-proxy",
"https-proxy",
"docker",
"cloudflare-workers",
"claude",
"api-proxy"
],
"author": "CodeLook Team",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"proxy-server": "./dist/cli.js"
},
"files": [
"dist",
"docker",
"scripts",
"cloudflare",
"README.md"
],
"scripts": {
"dev": "tsx watch src/cli.ts",
"build": "tsup",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"test": "vitest",
"test:watch": "vitest --watch",
"docker:build": "docker build -t codelook/proxy-server .",
"docker:run": "docker run -p 8080:8080 codelook/proxy-server",
"deploy": "bash scripts/deploy.sh",
"prepublishOnly": "npm run build"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.0.0",
"dotenv": "^16.4.5",
"http-proxy": "^1.18.1",
"node-fetch": "^3.3.2",
"pino": "^9.0.0",
"pino-pretty": "^11.0.0"
},
"devDependencies": {
"@types/http-proxy": "^1.17.14",
"@types/node": "^20.14.11",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"tsup": "^8.1.0",
"tsx": "^4.16.2",
"typescript": "^5.5.4",
"vitest": "^2.0.3"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}