{
  "name": "@mercuryworkshop/scramjet",
  "version": "1.1.0",
  "description": "An experimental web proxy that aims to be the successor to Ultraviolet",
  "type": "module",
  "types": "./dist/types/index.d.ts",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/MercuryWorkshop/scramjet.git"
  },
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "default": "./lib/noop.js"
    },
    "./path": {
      "types": "./lib/index.d.ts",
      "default": "./lib/index.cjs"
    },
    "./bundled": {
      "types": "./dist/types/index.d.ts",
      "default": "./dist/scramjet.bundle.js"
    }
  },
  "files": [
    "dist",
    "lib"
  ],
  "keywords": [],
  "author": "",
  "license": "MIT",
  "ava": {
    "files": [
      "tests/ci/**/*.js"
    ],
    "verbose": true
  },
  "devDependencies": {
    "@8hobbies/typedoc-plugin-404": "^3.2.1",
    "@8hobbies/typedoc-plugin-plausible": "^2.2.0",
    "@catppuccin/vscode": "^3.18.0",
    "@eslint/eslintrc": "^3.3.1",
    "@eslint/js": "^9.35.0",
    "@estruyf/github-actions-reporter": "^1.10.0",
    "@fastify/static": "^8.2.0",
    "@giancosta86/typedoc-readonly": "^1.0.1",
    "@mercuryworkshop/bare-as-module3": "^2.2.5",
    "@mercuryworkshop/epoxy-transport": "^2.1.28",
    "@mercuryworkshop/libcurl-transport": "^1.5.0",
    "@mercuryworkshop/wisp-js": "^0.3.3",
    "@nebula-services/bare-server-node": "^2.0.4",
    "@playwright/test": "^1.55.0",
    "@reside-ic/typedoc-plugin-copy-doc": "^1.1.2",
    "@rsdoctor/rspack-plugin": "^1.2.3",
    "@rslib/core": "^0.13.2",
    "@rspack/cli": "^1.5.3",
    "@rspack/core": "^1.5.3",
    "@shipgirl/typedoc-plugin-versions": "^0.3.2",
    "@stephansama/catppuccin-typedoc": "^1.0.1",
    "@types/eslint": "^9.6.1",
    "@types/estree": "^1.0.8",
    "@types/node": "^24.3.1",
    "@types/serviceworker": "^0.0.152",
    "@typescript-eslint/eslint-plugin": "^8.43.0",
    "@typescript-eslint/parser": "^8.43.0",
    "actionlint": "^2.0.6",
    "ava": "^6.4.1",
    "dotenv": "^17.2.2",
    "eslint": "^9.35.0",
    "fastify": "^5.6.0",
    "glob": "^11.0.3",
    "playwright": "^1.55.0",
    "prettier": "^3.6.2",
    "remark": "^15.0.1",
    "remark-cli": "^12.0.1",
    "remark-frontmatter": "^5.0.0",
    "remark-mdx": "^3.1.1",
    "remark-stringify": "^11.0.0",
    "ts-checker-rspack-plugin": "^1.1.5",
    "tsc-alias": "^1.8.16",
    "tslib": "^2.8.1",
    "typedoc": "^0.28.12",
    "typedoc-material-theme": "^1.4.0",
    "typedoc-plugin-frontmatter": "^1.3.0",
    "typedoc-plugin-include-example": "^2.1.2",
    "typedoc-plugin-markdown": "^4.8.1",
    "typedoc-plugin-mdn-links": "^5.0.9",
    "typescript": "^5.9.2"
  },
  "dependencies": {
    "@mercuryworkshop/bare-mux": "^2.1.9",
    "dom-serializer": "^2.0.0",
    "domhandler": "^5.0.3",
    "domutils": "^3.2.2",
    "htmlparser2": "10.0.0",
    "idb": "^8.0.3",
    "parse-domain": "^8.2.2",
    "set-cookie-parser": "^2.7.1"
  },
  "scripts": {
    "build": "rspack build --mode production",
    "build:types": "rslib build && rm -rf dist/temp",
    "build:all": "npm run build && npm run build:types",
    "rewriter:build": "cd rewriter/wasm/ && bash build.sh && cd ../../",
    "dev": "node server.js",
    "dev:debug": "DEBUG=1 node server.js",
    "pub": "npm publish --no-git-checks --access public",
    "format": "prettier --write .",
    "format:docs": "remark \"docs/**/*.{md,mdx}\" --output",
    "lint": "eslint ./src/",
    "lint:fix": "eslint ./src/ --fix",
    "lint:workflows": "actionlint .github/workflows/*.yml",
    "lint:all": "npm run lint && npm run lint:workflows",
    "test": "npm run test:package && npm run test:integration",
    "test:package": "ava tests/ci/packageValidation.js",
    "test:integration": "npx playwright test",
    "preinstall": "npx only-allow pnpm",
    "docs": "typedoc",
    "docs:dev": "typedoc --options typedoc.dev-facing.json",
    "docs:serve": "npx serve _docs; typedoc --watch"
  }
}