{
  "name": "cojson-core-napi",
  "version": "0.20.18",
  "description": "Node.js N-API bindings for the cojson-core Rust library, providing high-performance.",
  "main": "index.js",
  "license": "MIT",
  "keywords": [
    "napi-rs",
    "NAPI",
    "N-API",
    "Rust",
    "node-addon",
    "node-addon-api"
  ],
  "files": [
    "index.d.ts",
    "index.js"
  ],
  "napi": {
    "binaryName": "cojson-core-napi",
    "packageName": "cojson-core-napi",
    "targets": [
      "x86_64-apple-darwin",
      "x86_64-unknown-linux-gnu",
      "x86_64-unknown-linux-musl",
      "aarch64-unknown-linux-gnu",
      "armv7-unknown-linux-gnueabihf",
      "aarch64-apple-darwin",
      "aarch64-unknown-linux-musl"
    ]
  },
  "engines": {
    "node": ">= 12.22.0 < 13 || >= 14.17.0 < 15 || >= 15.12.0 < 16 || >= 16.0.0"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org/",
    "access": "public"
  },
  "devDependencies": {
    "@emnapi/core": "^1.5.0",
    "@emnapi/runtime": "^1.5.0",
    "@napi-rs/cli": "^3.5.0",
    "@oxc-node/core": "^0.0.32",
    "@scure/base": "1.2.1",
    "@taplo/cli": "^0.7.0",
    "@tybys/wasm-util": "^0.10.0",
    "chalk": "^5.6.2",
    "lint-staged": "^16.1.6",
    "npm-run-all2": "^8.0.4",
    "oxlint": "^1.14.0",
    "prettier": "^3.6.2",
    "tinybench": "^5.0.1",
    "typescript": "6.0.2",
    "vitest": "4.0.16"
  },
  "lint-staged": {
    "*.@(js|ts|tsx)": [
      "oxlint --fix"
    ],
    "*.@(js|ts|tsx|yml|yaml|md|json)": [
      "prettier --write"
    ],
    "*.toml": [
      "taplo format"
    ]
  },
  "ava": {
    "extensions": {
      "ts": "module"
    },
    "timeout": "2m",
    "workerThreads": false,
    "environmentVariables": {
      "OXC_TSCONFIG_PATH": "./__test__/tsconfig.json"
    },
    "nodeArguments": [
      "--import",
      "@oxc-node/core/register"
    ]
  },
  "prettier": {
    "printWidth": 120,
    "semi": false,
    "trailingComma": "all",
    "singleQuote": true,
    "arrowParens": "always"
  },
  "optionalDependencies": {
    "cojson-core-napi-darwin-x64": "0.20.18",
    "cojson-core-napi-linux-x64-gnu": "0.20.18",
    "cojson-core-napi-linux-x64-musl": "0.20.18",
    "cojson-core-napi-linux-arm64-gnu": "0.20.18",
    "cojson-core-napi-linux-arm-gnueabihf": "0.20.18",
    "cojson-core-napi-darwin-arm64": "0.20.18",
    "cojson-core-napi-linux-arm64-musl": "0.20.18"
  },
  "scripts": {
    "artifacts": "napi artifacts",
    "build:napi": "napi build --platform --release",
    "build:jsBinding": "napi build --platform --release && node --import @oxc-node/core/register scripts/build.ts",
    "build:debug": "napi build --platform",
    "format": "run-p format:prettier format:rs format:toml",
    "format:prettier": "prettier . -w",
    "format:toml": "taplo format",
    "format:rs": "cargo fmt",
    "lint": "oxlint . && cargo fmt -- --check",
    "generate:npm": "napi create-npm-dirs",
    "test": "vitest --watch --project cojson-core-napi",
    "test:ci": "vitest run --watch=false"
  }
}