{
  "name": "@happyvertical/json",
  "version": "0.89.12",
  "description": "High-performance JSON parsing and serialization with Rust SIMD acceleration and automatic fallback",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./adapters": {
      "import": "./dist/adapters/index.js",
      "types": "./dist/adapters/index.d.ts"
    }
  },
  "napi": {
    "name": "json-native",
    "triples": {
      "defaults": true,
      "additional": [
        "aarch64-apple-darwin",
        "aarch64-unknown-linux-gnu",
        "aarch64-unknown-linux-musl",
        "x86_64-unknown-linux-musl"
      ]
    }
  },
  "devDependencies": {
    "@napi-rs/cli": "^3.6.2",
    "@types/node": "25.0.9",
    "typescript": "5.9.3",
    "vite": "8.1.4",
    "vite-plugin-dts": "4.5.4",
    "vitest": "4.1.10"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "publishConfig": {
    "registry": "https://registry.npmjs.org",
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/happyvertical/sdk.git",
    "directory": "packages/json"
  },
  "bugs": {
    "url": "https://github.com/happyvertical/sdk/issues"
  },
  "homepage": "https://github.com/happyvertical/sdk/tree/main/packages/json#readme",
  "license": "MIT",
  "keywords": [
    "json",
    "simd",
    "fast",
    "parse",
    "stringify",
    "rust",
    "performance"
  ],
  "scripts": {
    "test": "vitest --config ../../vitest.package.config.ts run",
    "test:watch": "vitest --config ../../vitest.package.config.ts",
    "test:bench": "vitest --config ../../vitest.package.config.ts bench",
    "build": "vite build",
    "build:rust": "napi build --platform --release || echo 'Rust build skipped (toolchain not available)'",
    "build:rust:debug": "napi build --platform || echo 'Rust build skipped'",
    "build:full": "npm run build:rust && npm run build",
    "build:watch": "vite build --watch",
    "clean": "rm -rf dist *.node target",
    "typecheck": "tsc --noEmit",
    "lint": "biome check src/",
    "artifacts": "napi artifacts",
    "dev": "npm run build:watch & npm run test:watch"
  }
}