{
  "name": "pdf-brain",
  "version": "2.0.0",
  "description": "Local PDF & Markdown knowledge base with semantic search, AI enrichment, and SKOS taxonomy",
  "type": "module",
  "main": "src/index.ts",
  "bin": {
    "pdf-brain": "./src/cli.ts"
  },
  "scripts": {
    "build": "bun build src/index.ts src/cli.ts --outdir dist --target bun",
    "compile": "./scripts/compile.sh",
    "compile:all": "./scripts/compile.sh --all",
    "release:binaries": "./scripts/release-binaries.sh",
    "dev": "bun run src/cli.ts",
    "test": "bun test",
    "typecheck": "tsc --noEmit",
    "setup": "./scripts/setup.sh",
    "changeset": "changeset",
    "version": "changeset version",
    "release": "bun test && bun run typecheck && changeset publish",
    "prepare": "husky"
  },
  "dependencies": {
    "@ai-sdk/anthropic": "^2.0.56",
    "@ai-sdk/openai-compatible": "^1.0.29",
    "@effect/platform": "^0.72.0",
    "@effect/platform-bun": "^0.52.0",
    "@effect/schema": "^0.75.0",
    "@electric-sql/pglite": "^0.3.0",
    "@libsql/client": "^0.15.15",
    "@modelcontextprotocol/sdk": "1.26.0",
    "ai": "^5.0.115",
    "dotenv": "^17.2.3",
    "effect": "^3.12.0",
    "gray-matter": "^4.0.3",
    "ink": "^6.5.1",
    "ink-spinner": "^5.0.0",
    "mdast-util-to-string": "^4.0.0",
    "react": "^19.2.3",
    "remark-frontmatter": "^5.0.0",
    "remark-gfm": "^4.0.1",
    "remark-parse": "^11.0.0",
    "unified": "^11.0.5",
    "unist-util-visit": "^5.0.0"
  },
  "devDependencies": {
    "@changesets/cli": "^2.29.8",
    "@secretlint/secretlint-rule-preset-recommend": "^11.2.5",
    "@types/bun": "latest",
    "@types/mdast": "^4.0.4",
    "@types/react": "^19.2.7",
    "husky": "^9.1.7",
    "lint-staged": "^16.2.7",
    "react-devtools-core": "^7.0.1",
    "secretlint": "^11.2.5",
    "typescript": "^5.7.2"
  },
  "peerDependencies": {
    "typescript": "^5.0.0"
  },
  "engines": {
    "bun": ">=1.0.0"
  },
  "files": [
    "src",
    "scripts"
  ],
  "keywords": [
    "pdf",
    "markdown",
    "md",
    "knowledge-base",
    "vector-search",
    "semantic-search",
    "embeddings",
    "rag",
    "ollama",
    "local-first",
    "ai",
    "llm",
    "taxonomy",
    "skos",
    "libsql",
    "mcp",
    "effect-ts",
    "document-management",
    "personal-knowledge-base",
    "pkm"
  ],
  "author": "Joel Hooks",
  "license": "MIT",
  "lint-staged": {
    "*": "secretlint"
  }
}
