{
  "name": "dazzle-react",
  "version": "1.0.0-beta.7.3",
  "description": "Dazzle SDK for React (DOM) \u2014 embedded in-process database with HNSW vector search inside the browser, with persistence backed by the Origin Private File System (OPFS). Ships the same dazzle.wasm the Flutter Web / RN Web targets use, plus React hooks (useDazzleHash, useVectorIndex). For React Native apps, use the `dazzle-react-native` package instead.",
  "main": "lib/index.js",
  "module": "lib/index.mjs",
  "types": "lib/index.d.ts",
  "source": "src/index.ts",
  "exports": {
    ".": {
      "types": "./lib/index.d.ts",
      "import": "./lib/index.mjs",
      "require": "./lib/index.js"
    },
    "./dazzle.wasm": "./web/native/dazzle.wasm",
    "./dazzle.js": "./web/native/dazzle.js"
  },
  "files": [
    "src",
    "lib",
    "web/native",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsc -p .",
    "test": "jest --config jest.config.js",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "react",
    "wasm",
    "vector-search",
    "embeddings",
    "rag",
    "hnsw",
    "valkey",
    "opfs",
    "embedded-db",
    "on-device"
  ],
  "author": {
    "name": "Ivan Aliaga",
    "email": "ivanaliaga22@gmail.com",
    "url": "https://github.com/IvanAliaga"
  },
  "license": "Apache-2.0",
  "homepage": "https://github.com/IvanAliaga/dazzle-sdk",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/IvanAliaga/dazzle-sdk.git",
    "directory": "sdk/react/dazzle-react"
  },
  "peerDependencies": {
    "react": ">=18.0.0"
  },
  "devDependencies": {
    "@types/jest": "^29.5.14",
    "@types/react": "^18.2.0",
    "jest": "^29.7.0",
    "jest-environment-jsdom": "^29.7.0",
    "react": "^18.0.0",
    "ts-jest": "^29.4.9",
    "typescript": "^5.4.0"
  },
  "engines": {
    "node": ">=18"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  }
}
