logseq-mcp 0.3.0 → 0.3.2
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 +169 -178
- package/package.json +5 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "logseq-mcp",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Logseq Model Context Protocol Agent",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"test:unit:watch": "TEST_TYPE=unit bun test --watch tests/unit/",
|
|
22
22
|
"test:e2e:watch": "TEST_TYPE=e2e bun test --watch tests/e2e/",
|
|
23
23
|
"typecheck": "bun --bun tsc --noEmit",
|
|
24
|
-
"lint": "
|
|
25
|
-
"
|
|
26
|
-
"
|
|
24
|
+
"lint": "bunx biome lint --write",
|
|
25
|
+
"lint:fix": "bunx biome lint --write",
|
|
26
|
+
"check": "bunx biome check --write",
|
|
27
27
|
"build": "bun run build.ts",
|
|
28
28
|
"build:node": "bun run build.ts node",
|
|
29
29
|
"build:bun": "bun run build.ts bun",
|
|
@@ -45,15 +45,12 @@
|
|
|
45
45
|
"zod": "^4.1.13"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
+
"@biomejs/biome": "2.3.8",
|
|
48
49
|
"@semantic-release/commit-analyzer": "^11.1.0",
|
|
49
50
|
"@semantic-release/github": "^9.2.0",
|
|
50
51
|
"@semantic-release/release-notes-generator": "^12.1.0",
|
|
51
52
|
"@types/node": "^22.13.11",
|
|
52
|
-
"@typescript-eslint/eslint-plugin": "^6.10.0",
|
|
53
|
-
"@typescript-eslint/parser": "^6.10.0",
|
|
54
53
|
"bun-types": "^1.2.5",
|
|
55
|
-
"eslint": "^9.23.0",
|
|
56
|
-
"globals": "^13.24.0",
|
|
57
54
|
"semantic-release": "^23.0.0",
|
|
58
55
|
"typescript": "^5.2.2"
|
|
59
56
|
},
|