{
  "name": "sqlite-wasm-vec",
  "version": "0.1.11",
  "description": "SQLite Wasm with sqlite-vec extension for vector similarity search, conveniently wrapped as an ES Module.",
  "keywords": [
    "sqlite",
    "sqlite3",
    "sqlite-wasm",
    "sqlite3-wasm",
    "sqlite-vec",
    "vector",
    "vectors",
    "embedding",
    "embeddings",
    "similarity",
    "search",
    "webassembly",
    "wasm",
    "esm",
    "opfs",
    "origin-private-file-system"
  ],
  "main": "index.mjs",
  "node": "node.mjs",
  "type": "module",
  "files": [
    "index.d.ts",
    "index.mjs",
    "node.mjs",
    "sqlite-wasm/"
  ],
  "types": "index.d.ts",
  "exports": {
    ".": {
      "types": "./index.d.ts",
      "import": "./index.mjs",
      "main": "./index.mjs",
      "browser": "./index.mjs"
    },
    "./package.json": "./package.json",
    "./sqlite3.wasm": "./sqlite-wasm/jswasm/sqlite3.wasm"
  },
  "bin": {
    "sqlite-wasm": "bin/index.js"
  },
  "scripts": {
    "publint": "npx publint",
    "check-types": "tsc",
    "clean": "shx rm -rf sqlite-wasm",
    "build": "echo 'Build step skipped'",
    "start": "npx http-server --coop",
    "start:node": "cd demo && node node.mjs",
    "fix": "npx prettier . --write",
    "prepublishOnly": "npm run publint && npm run check-types",
    "deploy": "npm run prepublishOnly && git add . && git commit -am 'New release' && git push && npm publish --access public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/yangbooom/sqlite-wasm-vec.git"
  },
  "author": "yangbooom (based on sqlite/sqlite-wasm by Thomas Steiner)",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/yangbooom/sqlite-wasm-vec/issues"
  },
  "homepage": "https://github.com/yangbooom/sqlite-wasm-vec#readme",
  "devDependencies": {
    "decompress": "^4.2.1",
    "http-server": "github:vapier/http-server",
    "module-workers-polyfill": "^0.3.2",
    "node-fetch": "^3.3.2",
    "prettier": "^3.6.2",
    "prettier-plugin-jsdoc": "^1.3.3",
    "publint": "^0.3.12",
    "shx": "^0.4.0",
    "typescript": "^5.9.2"
  }
}
