fbi-proxy 1.9.1

A fast and flexible proxy server for intercepting and modifying HTTP/HTTPS requests
{
  "name": "fbi-proxy",
  "version": "1.9.1",
  "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",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:ui": "vitest --ui",
    "test:e2e": "vitest run e2e",
    "test:e2e:watch": "vitest e2e",
    "test:coverage": "vitest run --coverage"
  },
  "dependencies": {
    "execa": "^9.6.1",
    "from-node-stream": "^0.1.2",
    "get-port": "^7.1.0",
    "hot-memo": "^1.1.1",
    "sflow": "^1.27.0",
    "tsa-composer": "^1.0.0",
    "yargs": "^17.7.2"
  },
  "devDependencies": {
    "@playwright/test": "^1.58.2",
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/git": "^10.0.1",
    "@semantic-release/github": "^9.2.6",
    "@semantic-release/npm": "^13.1.3",
    "@types/bun": "latest",
    "@types/minimist": "^1.2.5",
    "@types/ws": "^8.18.1",
    "@vitest/ui": "^3.2.4",
    "husky": "^9.1.7",
    "lint-staged": "^16.2.7",
    "node-fetch": "^3.3.2",
    "playwright": "^1.58.2",
    "prettier": "^3.8.1",
    "semantic-release": "^24.0.0",
    "semantic-release-cargo": "^2.4.2",
    "vite": "^7.3.1",
    "vitest": "^3.2.4",
    "ws": "^8.19.0"
  },
  "engines": {
    "node": ">=22.14.0"
  },
  "lint-staged": {
    "*.{ts,js}": [
      "bun --bun prettier --write"
    ],
    "*.{json,md,yml,yaml}": [
      "bun --bun prettier --write"
    ]
  },
  "trustedDependencies": [],
  "overrides": {
    "@semantic-release/npm": "^13.1.3"
  }
}