logseq-mcp 0.2.0 → 0.3.1
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.
- package/dist/index.js +180 -81
- package/package.json +9 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "logseq-mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.1",
|
|
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/",
|
|
@@ -20,9 +21,9 @@
|
|
|
20
21
|
"test:unit:watch": "TEST_TYPE=unit bun test --watch tests/unit/",
|
|
21
22
|
"test:e2e:watch": "TEST_TYPE=e2e bun test --watch tests/e2e/",
|
|
22
23
|
"typecheck": "bun --bun tsc --noEmit",
|
|
23
|
-
"lint": "
|
|
24
|
-
"
|
|
25
|
-
"
|
|
24
|
+
"lint": "bunx biome lint --write",
|
|
25
|
+
"lint:fix": "bunx biome lint --write",
|
|
26
|
+
"check": "bunx biome check --write",
|
|
26
27
|
"build": "bun run build.ts",
|
|
27
28
|
"build:node": "bun run build.ts node",
|
|
28
29
|
"build:bun": "bun run build.ts bun",
|
|
@@ -39,20 +40,17 @@
|
|
|
39
40
|
"test:workflow:publish": "act release -j publish --container-architecture linux/amd64"
|
|
40
41
|
},
|
|
41
42
|
"dependencies": {
|
|
42
|
-
"@modelcontextprotocol/sdk": "
|
|
43
|
+
"@modelcontextprotocol/sdk": "^1.23.0",
|
|
43
44
|
"dotenv": "^16.3.1",
|
|
44
|
-
"zod": "^
|
|
45
|
+
"zod": "^4.1.13"
|
|
45
46
|
},
|
|
46
47
|
"devDependencies": {
|
|
48
|
+
"@biomejs/biome": "2.3.8",
|
|
47
49
|
"@semantic-release/commit-analyzer": "^11.1.0",
|
|
48
50
|
"@semantic-release/github": "^9.2.0",
|
|
49
51
|
"@semantic-release/release-notes-generator": "^12.1.0",
|
|
50
52
|
"@types/node": "^22.13.11",
|
|
51
|
-
"@typescript-eslint/eslint-plugin": "^6.10.0",
|
|
52
|
-
"@typescript-eslint/parser": "^6.10.0",
|
|
53
53
|
"bun-types": "^1.2.5",
|
|
54
|
-
"eslint": "^9.23.0",
|
|
55
|
-
"globals": "^13.24.0",
|
|
56
54
|
"semantic-release": "^23.0.0",
|
|
57
55
|
"typescript": "^5.2.2"
|
|
58
56
|
},
|