logseq-mcp 0.2.0 → 0.3.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 (2) hide show
  1. package/dist/index.js +134 -26
  2. package/package.json +5 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "logseq-mcp",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "description": "Logseq Model Context Protocol Agent",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -9,8 +9,9 @@
9
9
  },
10
10
  "scripts": {
11
11
  "start": "bun run src/index.ts",
12
- "test": "bun test tests/",
12
+ "test": "bun test tests/unit/ tests/e2e/",
13
13
  "test:all": "bun test tests/",
14
+ "test:integration": "TEST_TYPE=integration bun test tests/integration/",
14
15
  "test:unit": "TEST_TYPE=unit bun test tests/unit/",
15
16
  "test:e2e": "TEST_TYPE=e2e bun test tests/e2e/",
16
17
  "coverage": "bun test --coverage tests/",
@@ -39,9 +40,9 @@
39
40
  "test:workflow:publish": "act release -j publish --container-architecture linux/amd64"
40
41
  },
41
42
  "dependencies": {
42
- "@modelcontextprotocol/sdk": "latest",
43
+ "@modelcontextprotocol/sdk": "^1.23.0",
43
44
  "dotenv": "^16.3.1",
44
- "zod": "^3.22.4"
45
+ "zod": "^4.1.13"
45
46
  },
46
47
  "devDependencies": {
47
48
  "@semantic-release/commit-analyzer": "^11.1.0",