@claudeink/mcp-server 0.9.0 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/dist/cli.js +33642 -22
  2. package/dist/index.js +25013 -1316
  3. package/package.json +8 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@claudeink/mcp-server",
3
- "version": "0.9.0",
3
+ "version": "1.0.0",
4
4
  "description": "ClaudeInk MCP Server — Claude 对话知识沉淀系统,保存、搜索、整合对话中的有价值内容",
5
5
  "mcpName": "io.github.weekdmond/claudeink",
6
6
  "type": "module",
@@ -19,9 +19,11 @@
19
19
  "LICENSE"
20
20
  ],
21
21
  "scripts": {
22
- "build": "tsup src/index.ts src/cli.ts --format esm --dts --clean",
22
+ "build": "tsup --config tsup.config.ts",
23
23
  "dev": "tsup src/index.ts src/cli.ts --format esm --watch",
24
24
  "typecheck": "tsc --noEmit",
25
+ "test": "vitest run",
26
+ "test:watch": "vitest",
25
27
  "prepublishOnly": "npm run build"
26
28
  },
27
29
  "keywords": [
@@ -47,15 +49,16 @@
47
49
  },
48
50
  "dependencies": {
49
51
  "@modelcontextprotocol/sdk": "^1.0.0",
50
- "node-cron": "^3.0.3",
51
- "gray-matter": "^4.0.3",
52
52
  "glob": "^10.3.10",
53
+ "gray-matter": "^4.0.3",
54
+ "node-cron": "^3.0.3",
53
55
  "zod": "^3.22.4"
54
56
  },
55
57
  "devDependencies": {
56
58
  "@types/node": "^20.11.0",
57
59
  "@types/node-cron": "^3.0.11",
58
60
  "tsup": "^8.0.1",
59
- "typescript": "^5.3.3"
61
+ "typescript": "^5.3.3",
62
+ "vitest": "^4.1.0"
60
63
  }
61
64
  }