fbi-proxy 1.7.0

A fast and flexible proxy server for intercepting and modifying HTTP/HTTPS requests
{
  "name": "fbi-proxy",
  "version": "1.7.0",
  "description": "FBI-Proxy provides easy HTTPS access to your local services with intelligent domain routing",
  "keywords": [
    "development-tools",
    "http-proxy",
    "proxy",
    "reverse-proxy",
    "websocket"
  ],
  "homepage": "https://github.com/snomiao/fbi-proxy#readme",
  "bugs": {
    "url": "https://github.com/snomiao/fbi-proxy/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/snomiao/fbi-proxy.git"
  },
  "license": "MIT",
  "author": "snomiao",
  "type": "module",
  "bin": {
    "fbi-proxy": "dist/cli.js"
  },
  "files": [
    "dist",
    "release",
    "rs",
    "ts"
  ],
  "scripts": {
    "build": "bun run build:rs && bun run build:js",
    "build:js": "bun build ./ts/cli.ts --outdir dist --target node",
    "build:ts": "tsc --noEmit",
    "build:rs": "cargo build --release",
    "dev": "bun --hot ts/cli.ts --dev",
    "dev:rs": "cargo watch -x run",
    "format": "prettier --write .",
    "lint": "prettier --check .",
    "prepare": "husky",
    "start": "bun ts/cli.ts",
    "start:rs": "./target/release/fbi-proxy"
  },
  "dependencies": {
    "execa": "^9.6.0",
    "from-node-stream": "^0.1.0",
    "get-port": "^7.1.0",
    "hot-memo": "^1.1.1",
    "sflow": "^1.24.5",
    "tsa-composer": "^1.0.0",
    "yargs": "^17.7.2"
  },
  "devDependencies": {
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/git": "^10.0.1",
    "@semantic-release/github": "^9.2.0",
    "@types/bun": "latest",
    "@types/minimist": "^1.2.5",
    "husky": "^9.1.7",
    "lint-staged": "^16.1.2",
    "prettier": "^3.6.2",
    "semantic-release": "^22.0.0",
    "semantic-release-cargo": "^2.4.0"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "lint-staged": {
    "*.{ts,js}": [
      "bun --bun prettier --write"
    ],
    "*.{json,md,yml,yaml}": [
      "bun --bun prettier --write"
    ]
  },
  "trustedDependencies": []
}