{
  "name": "@oxide-ts/http",
  "version": "0.3.1",
  "description": "Fast HTTP/1.1 + HTTP/2 server for Node.js built on Rust (napi-rs)",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "license": "MIT",
  "engines": {
    "node": ">=18"
  },
  "napi": {
    "binaryName": "oxide-http",
    "packageName": "@oxide-ts/http",
    "targets": [
      "aarch64-apple-darwin",
      "x86_64-apple-darwin",
      "x86_64-unknown-linux-gnu",
      "aarch64-unknown-linux-gnu",
      "x86_64-unknown-linux-musl",
      "aarch64-unknown-linux-musl"
    ]
  },
  "scripts": {
    "build": "napi build --platform",
    "build:release": "napi build --platform --release",
    "artifacts": "napi artifacts",
    "prepublishOnly": "tsc",
    "format": "cargo fmt",
    "lint": "cargo clippy -- -D warnings && npm run typecheck",
    "test": "node --test \"__test__/**/*.test.ts\"",
    "build:ts": "tsc",
    "typecheck": "tsc --noEmit && tsc -p tsconfig.test.json"
  },
  "devDependencies": {
    "@napi-rs/cli": "^3.7.2",
    "@types/node": "^26.1.1",
    "@valibot/to-json-schema": "^1.7.1",
    "typescript": "^7.0.2",
    "valibot": "^1.4.2"
  },
  "files": [
    "index.js",
    "index.d.ts",
    "*.node",
    "dist/",
    "README.md",
    "CHANGELOG.md"
  ],
  "peerDependencies": {
    "valibot": ">=1",
    "@valibot/to-json-schema": ">=1"
  },
  "peerDependenciesMeta": {
    "valibot": {
      "optional": true
    },
    "@valibot/to-json-schema": {
      "optional": true
    }
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/aopilatov/oxide-http.git"
  },
  "keywords": [
    "http",
    "http2",
    "server",
    "rust",
    "napi",
    "hyper",
    "tokio",
    "fastify-alternative"
  ],
  "bugs": {
    "url": "https://github.com/aopilatov/oxide-http/issues"
  },
  "homepage": "https://github.com/aopilatov/oxide-http#readme"
}
