{
  "name": "@easbot/note",
  "version": "0.3.23",
  "description": "Note Knowledge Base - 非结构化记忆和文档知识库管理系统，支持混合搜索（向量+FTS+图）和 LLM 驱动的知识摄取",
  "type": "module",
  "main": "dist/index.cjs",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    },
    "./package.json": "./package.json"
  },
  "bin": {
    "easbot-note": "./dist/cli.mjs"
  },
  "keywords": [
    "easbot",
    "knowledge-base",
    "vector-search",
    "full-text-search",
    "graph-database",
    "hybrid-search",
    "document-ingestion",
    "entity-extraction",
    "llm",
    "embedding",
    "sqlite",
    "rag"
  ],
  "author": "houjallen",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/houjallen/easbot.git",
    "directory": "packages/note"
  },
  "homepage": "https://github.com/houjallen/easbot/tree/main/packages/note#readme",
  "bugs": {
    "url": "https://github.com/houjallen/easbot/issues"
  },
  "files": [
    "dist",
    "README.md",
    "README.en.md",
    "LICENSE"
  ],
  "dependencies": {
    "@ai-sdk/provider": "^3.0.15",
    "@ai-sdk/provider-utils": "^4.0.45",
    "@ai-sdk/openai-compatible": "2.0.70",
    "@ai-sdk/anthropic": "3.0.110",
    "ai": "^6.0.253",
    "zod": "^4.4.3",
    "better-sqlite3": "^13.0.3",
    "gray-matter": "^4.0.3",
    "jieba-wasm": "^2.4.0",
    "xdg-basedir": "^5.1.0",
    "@easbot/local-model-sdk": "0.3.23",
    "@easbot/terminal": "0.3.23",
    "@easbot/database": "0.3.23",
    "@easbot/mcp": "0.3.23",
    "@easbot/ollama-sdk": "0.3.23",
    "@easbot/types": "0.3.23",
    "@easbot/llm": "0.3.23",
    "@easbot/utils": "0.3.23"
  },
  "devDependencies": {
    "@types/better-sqlite3": "^9.6.0",
    "@types/node": "^25.9.5",
    "@vitest/coverage-v8": "^4.1.10",
    "dotenv": "^17.4.2",
    "tsup": "^8.5.1",
    "typescript": "^6.0.3",
    "vitest": "^4.1.10"
  },
  "engines": {
    "node": ">=22.22.2"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "dev": "tsup --watch --env.NODE_ENV development",
    "build": "tsup --env.NODE_ENV production",
    "test": "vitest",
    "test:run": "vitest run",
    "test:coverage": "vitest run --coverage",
    "test:clean": "tsx scripts/clean-test-fixtures.ts",
    "lint": "biome check .",
    "lint:fix": "biome check --write .",
    "lint:report": "biome check --reporter=summary .",
    "format": "biome format .",
    "format:fix": "biome format --write .",
    "type-check": "tsc --noEmit",
    "clean": "rimraf dist node_modules",
    "publish:npm": "bash scripts/publish.sh",
    "publish:npm:win": "powershell -ExecutionPolicy Bypass -File scripts/publish.ps1"
  }
}