{
  "name": "itemsjs",
  "version": "2.4.4",
  "description": "Created to perform fast search on small json dataset (up to 1000 elements).",
  "type": "module",
  "scripts": {
    "test": "mocha tests/*",
    "lint": "eslint \"**/*.js\" --ext js",
    "lint:fix": "eslint \"**/*.js\" --ext js --fix",
    "benchmark:snapshot": "node benchmarks/snapshot.js",
    "benchmark:search": "node benchmarks/search.js",
    "serve:benchmark": "node scripts/serve-benchmark.js",
    "prepublishOnly": "npm run build",
    "build": "microbundle",
    "dev": "microbundle watch",
    "release": "./release.sh"
  },
  "source": "src/index.js",
  "exports": {
    "require": "./dist/index.cjs",
    "default": "./dist/index.modern.js"
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.module.js",
  "unpkg": "./dist/index.umd.js",
  "files": [
    "./dist/*"
  ],
  "author": "Mateusz Rzepa",
  "license": "Apache-2.0",
  "devDependencies": {
    "boolean-parser": "^0.0.2",
    "eslint": "^8.52.0",
    "fastbitset": "^0.4.1",
    "lodash-es": "^4.17.21",
    "lunr": "^1.0.0",
    "microbundle": "^0.15.1",
    "mocha": "^10.2.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/itemsapi/itemsjs.git"
  },
  "keywords": [
    "full",
    "text",
    "fulltext",
    "search",
    "faceted search",
    "javascript",
    "search engine"
  ],
  "bugs": {
    "url": "https://github.com/itemsapi/itemsjs/issues"
  },
  "homepage": "https://github.com/itemsapi/itemsjs#readme"
}
