{
  "name": "@equationalapplications/core-llm-wiki",
  "version": "4.22.0",
  "description": "Platform-agnostic TypeScript engine for hybrid LLM memory. Features episodic fact extraction, semantic vector search, and multi-agent architectures over SQLite. Bring your own adapter.",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.js",
      "import": "./dist/index.mjs"
    },
    "./testing": {
      "types": "./dist/testing.d.ts",
      "require": "./dist/testing.js",
      "import": "./dist/testing.mjs"
    }
  },
  "files": [
    "dist",
    "LICENSE",
    "README.md"
  ],
  "license": "MIT",
  "keywords": [
    "llm-memory",
    "ai-memory",
    "rag",
    "sqlite",
    "vector-search",
    "episodic-memory",
    "semantic-memory",
    "multi-agent",
    "typescript",
    "gemini",
    "openai"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/equationalapplications/expo-llm-wiki.git",
    "directory": "packages/core"
  },
  "bugs": {
    "url": "https://github.com/equationalapplications/expo-llm-wiki/issues"
  },
  "homepage": "https://github.com/equationalapplications/expo-llm-wiki/tree/main/packages/core#readme",
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org"
  },
  "engines": {
    "node": ">=20"
  },
  "dependencies": {
    "minisearch": "^7.0.0",
    "@equationalapplications/core-okf": "4.22.0"
  },
  "devDependencies": {
    "@types/better-sqlite3": "^7.6.13",
    "better-sqlite3": "^12.9.0",
    "tsup": "^8.0.0",
    "typescript": "^5.4.0",
    "vitest": "4.1.5"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "test:watch": "vitest"
  }
}