{
  "name": "olingo",
  "version": "2.5.1",
  "description": "Lightweight semantic search database with text embeddings for Node.js and Bun",
  "author": "Christoffer Artmann <artgaard@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/artmann/olingo.git"
  },
  "homepage": "https://github.com/artmann/olingo#readme",
  "bugs": {
    "url": "https://github.com/artmann/olingo/issues"
  },
  "keywords": [
    "embeddings",
    "semantic-search",
    "vector-database",
    "bun",
    "nodejs",
    "rag",
    "nlp",
    "machine-learning",
    "text-search",
    "cosine-similarity"
  ],
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist"
  ],
  "bin": {
    "olingo": "./dist/cli.mjs"
  },
  "scripts": {
    "benchmark": "bun run benchmark/index.ts",
    "benchmark:hnsw": "bun run benchmark/suites/hnsw-benchmark.ts",
    "benchmark:quick": "bun run benchmark/index.ts --quick",
    "build": "rolldown --config rolldown.config.ts && tsc --project tsconfig.build.json",
    "cli": "bun src/cli.ts",
    "dev": "bun run src/index.ts",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "lint": "eslint src/ --ext .ts,.tsx",
    "lint:fix": "eslint src/ --ext .ts,.tsx --fix",
    "lint:check": "eslint src/ --ext .ts,.tsx --max-warnings 0",
    "test:ui": "vitest --ui",
    "test:watch": "vitest",
    "test": "vitest run",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "bun run build"
  },
  "dependencies": {
    "cleye": "^1.3.2",
    "node-llama-cpp": "^3.15.0",
    "tiny-invariant": "^1.3.3"
  },
  "devDependencies": {
    "@types/bun": "latest",
    "@typescript-eslint/eslint-plugin": "^8.46.2",
    "@typescript-eslint/parser": "^8.46.2",
    "@vitest/ui": "^2.1.8",
    "eslint": "^8.57.1",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-prettier": "^5.5.4",
    "eslint-plugin-vitest": "^0.5.4",
    "prettier": "^3.6.2",
    "rolldown": "^1.0.0-beta.44",
    "tsx": "^4.19.2",
    "vitest": "^2.1.8"
  },
  "peerDependencies": {
    "typescript": "^5.0.0"
  },
  "engines": {
    "node": ">=18",
    "bun": ">=1"
  }
}
