{
  "name": "ndx",
  "version": "2.0.1",
  "type": "module",
  "sideEffects": false,
  "exports": {
    ".": "./dist/index.js",
    "./query": "./dist/query.js"
  },
  "description": "Lightweight Full-Text Indexing and Searching Library.",
  "scripts": {
    "prepublishOnly": "npm run clean && npm run dist",
    "dist": "tsc -b --pretty",
    "clean": "tsc -b --clean --pretty",
    "ts:watch": "tsc -b -w --pretty",
    "ts:force": "tsc -b --force --pretty",
    "test": "node --enable-source-maps --test",
    "test:only": "node --enable-source-maps --test-only --test"
  },
  "files": [
    "dist",
    "src",
    "!dist/**/*.tsbuildinfo",
    "!src/**/__tests__",
    "README.md",
    "LICENSE"
  ],
  "devDependencies": {
    "typescript": "^4.9.5"
  },
  "license": "MIT",
  "keywords": [
    "text",
    "full-text",
    "index",
    "inverted-index",
    "search",
    "relevance"
  ],
  "author": "Boris Kaul <localvoid@gmail.com> (https://github.com/localvoid)",
  "homepage": "https://github.com/localvoid/ndx",
  "bugs": "https://github.com/localvoid/ndx/issues",
  "repository": "github:localvoid/ndx"
}