logseq-mcp 0.0.0-development

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/README.md +210 -0
  2. package/dist/index.js +294 -0
  3. package/package.json +79 -0
package/package.json ADDED
@@ -0,0 +1,79 @@
1
+ {
2
+ "name": "logseq-mcp",
3
+ "version": "0.0.0-development",
4
+ "description": "Logseq Model Context Protocol Agent",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "bin": {
8
+ "logseq-mcp": "dist/index.js"
9
+ },
10
+ "scripts": {
11
+ "start": "bun run src/index.ts",
12
+ "test": "bun test tests/unit/ tests/e2e/",
13
+ "test:all": "bun test tests/",
14
+ "test:integration": "TEST_TYPE=integration bun test tests/integration/",
15
+ "test:unit": "TEST_TYPE=unit bun test tests/unit/",
16
+ "test:e2e": "TEST_TYPE=e2e bun test tests/e2e/",
17
+ "coverage": "bun test --coverage tests/",
18
+ "coverage:unit": "TEST_TYPE=unit bun test --coverage tests/unit/",
19
+ "coverage:e2e": "TEST_TYPE=e2e bun test --coverage tests/e2e/",
20
+ "test:watch": "bun test --watch tests/",
21
+ "test:unit:watch": "TEST_TYPE=unit bun test --watch tests/unit/",
22
+ "test:e2e:watch": "TEST_TYPE=e2e bun test --watch tests/e2e/",
23
+ "typecheck": "bun --bun tsc --noEmit",
24
+ "lint": "bunx biome lint --write",
25
+ "lint:fix": "bunx biome lint --write",
26
+ "check": "bunx biome check --write",
27
+ "build": "bun run build.ts",
28
+ "build:node": "bun run build.ts node",
29
+ "build:bun": "bun run build.ts bun",
30
+ "build:binary": "bun run build.ts binary",
31
+ "build:all-binaries": "bun run build.ts all-binaries",
32
+ "build:macos-arm": "bun run build.ts binary macos-arm",
33
+ "build:macos-intel": "bun run build.ts binary macos-intel",
34
+ "build:linux-x64": "bun run build.ts binary linux-x64",
35
+ "build:linux-arm64": "bun run build.ts binary linux-arm64",
36
+ "build:windows": "bun run build.ts binary windows",
37
+ "prepare": "chmod +x dist/index.js || true",
38
+ "test:workflow:release": "act release --container-architecture linux/amd64 -n",
39
+ "test:workflow:build-binaries": "act release -j build-binaries --container-architecture linux/amd64",
40
+ "test:workflow:publish": "act release -j publish --container-architecture linux/amd64"
41
+ },
42
+ "dependencies": {
43
+ "@modelcontextprotocol/sdk": "^1.23.0",
44
+ "dotenv": "^16.3.1",
45
+ "zod": "^4.1.13"
46
+ },
47
+ "devDependencies": {
48
+ "@biomejs/biome": "2.3.8",
49
+ "@semantic-release/commit-analyzer": "^11.1.0",
50
+ "@semantic-release/github": "^9.2.6",
51
+ "@semantic-release/release-notes-generator": "^12.1.0",
52
+ "@types/node": "^22.13.11",
53
+ "bun-types": "^1.2.5",
54
+ "semantic-release": "^23.1.1",
55
+ "typescript": "^5.2.2"
56
+ },
57
+ "files": [
58
+ "dist",
59
+ "README.md"
60
+ ],
61
+ "publishConfig": {
62
+ "access": "public"
63
+ },
64
+ "author": "",
65
+ "license": "MIT",
66
+ "keywords": [
67
+ "logseq",
68
+ "agent",
69
+ "model-context-protocol"
70
+ ],
71
+ "repository": {
72
+ "type": "git",
73
+ "url": "git+https://github.com/briansunter/logseq-mcp.git"
74
+ },
75
+ "bugs": {
76
+ "url": "https://github.com/briansunter/logseq-mcp/issues"
77
+ },
78
+ "homepage": "https://github.com/briansunter/logseq-mcp#readme"
79
+ }