{
  "name": "dsh-memory-eternal",
  "version": "0.7.0",
  "description": "记忆核心（Memory Eternal）：自研的 DeepSeek Harness 记忆插件，不移植任何既有记忆框架——对话结束后自动沉淀知识卡到本地 Markdown Vault（自研去重、自研 CJK 检索、可 git 管理），设置页提供图形化知识库（统计 / 搜索 / 知识图谱 + 侧边栏一键弹窗），Agent 通过 memory_recall 工具按需召回历史上下文。零人工干预。",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/EternalNight996/dsh-memory-eternal.git"
  },
  "homepage": "https://github.com/EternalNight996/dsh-memory-eternal",
  "author": "EternalNight996",
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "type": "module",
  "main": "index.js",
  "bin": {
    "dsh-memory": "bin/dsh-memory.mjs"
  },
  "exports": {
    ".": "./index.js",
    "./client": "./lib/client.js",
    "./cordis.patch.yml": "./cordis.patch.yml",
    "./package.json": "./package.json"
  },
  "files": [
    "index.js",
    "lib",
    "bin",
    "web",
    "hooks",
    "skills",
    ".claude-plugin",
    ".codex-plugin",
    ".cursor-plugin",
    ".mcp.json",
    "cordis.patch.yml",
    "README.md",
    "README.en.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=22"
  },
  "keywords": [
    "deepseek-harness",
    "dsh",
    "dsh-plugin",
    "plugin",
    "memory",
    "knowledge-base",
    "vault",
    "markdown",
    "knowledge-graph",
    "rag",
    "second-brain"
  ],
  "scripts": {
    "build": "node build.mjs",
    "build:client": "node build.mjs",
    "prepublishOnly": "node build.mjs",
    "test": "node tests/vault.test.mjs && node tests/capture.test.mjs && node tests/api.test.mjs"
  },
  "dependencies": {
    "@deepseek-ai/schemastery": "^3.18.1"
  },
  "peerDependencies": {
    "@deepseek-ai/cordis": "^4.0.1",
    "@deepseek-ai/dsh-llm": ">=0.1.0-rc.2 <0.2.0",
    "@deepseek-ai/dsh-tools": ">=0.1.0-rc.2 <0.2.0"
  },
  "devDependencies": {
    "@types/react": "^18.3.1",
    "esbuild": "^0.24.0",
    "react": "18.3.1",
    "react-dom": "18.3.1"
  },
  "dsh": {
    "client": {
      "platform": "web",
      "inject": [
        "@deepseek-ai/dsh-client-runtime",
        "@deepseek-ai/dsh-client-ui-settings",
        "@deepseek-ai/dsh-client-locale",
        "@deepseek-ai/dsh-client-connection",
        "@deepseek-ai/dsh-api-remotes"
      ]
    },
    "bundle": {
      "patch": "./cordis.patch.yml"
    },
    "marketplace": {
      "profiles": [
        "web"
      ],
      "requiresBuildApproval": false,
      "requiresRestart": true,
      "manualSteps": false
    }
  }
}
