logseq-mcp 0.0.10 → 0.0.13

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/package.json +21 -8
  2. package/dist/index.js +0 -8110
package/package.json CHANGED
@@ -1,21 +1,34 @@
1
1
  {
2
2
  "name": "logseq-mcp",
3
- "version": "0.0.10",
3
+ "version": "0.0.13",
4
4
  "description": "Logseq Model Context Protocol Agent",
5
5
  "type": "module",
6
- "main": "index.ts",
6
+ "main": "dist/index.js",
7
7
  "bin": {
8
8
  "logseq-mcp": "dist/index.js"
9
9
  },
10
10
  "scripts": {
11
11
  "start": "bun run src/index.ts",
12
12
  "test": "bun test tests/",
13
- "build:macos-arm": "bun build --compile --target=bun-darwin-arm64 src/index.ts --outfile logseq-mcp",
14
- "build:macos-intel": "bun build --compile --target=bun-darwin-x64 src/index.ts --outfile logseq-mcp-intel",
15
- "build:linux-x64": "bun build --compile --target=bun-linux-x64 src/index.ts --outfile logseq-mcp-linux-x64",
16
- "build:linux-arm64": "bun build --compile --target=bun-linux-arm64 src/index.ts --outfile logseq-mcp-linux-arm64",
17
- "build:windows": "bun build --compile --target=bun-win32-x64 src/index.ts --outfile logseq-mcp-win.exe",
18
- "build": "bun build src/index.ts --outdir dist --target node",
13
+ "test:all": "bun test tests/",
14
+ "test:unit": "TEST_TYPE=unit bun test tests/unit/",
15
+ "test:e2e": "TEST_TYPE=e2e bun test tests/e2e/",
16
+ "coverage": "bun test --coverage tests/",
17
+ "coverage:unit": "TEST_TYPE=unit bun test --coverage tests/unit/",
18
+ "coverage:e2e": "TEST_TYPE=e2e bun test --coverage tests/e2e/",
19
+ "test:watch": "bun test --watch tests/",
20
+ "test:unit:watch": "TEST_TYPE=unit bun test --watch tests/unit/",
21
+ "test:e2e:watch": "TEST_TYPE=e2e bun test --watch tests/e2e/",
22
+ "build": "bun run build.ts",
23
+ "build:node": "bun run build.ts node",
24
+ "build:bun": "bun run build.ts bun",
25
+ "build:binary": "bun run build.ts binary",
26
+ "build:all-binaries": "bun run build.ts all-binaries",
27
+ "build:macos-arm": "bun run build.ts binary macos-arm",
28
+ "build:macos-intel": "bun run build.ts binary macos-intel",
29
+ "build:linux-x64": "bun run build.ts binary linux-x64",
30
+ "build:linux-arm64": "bun run build.ts binary linux-arm64",
31
+ "build:windows": "bun run build.ts binary windows",
19
32
  "prepublishOnly": "bun run build",
20
33
  "test:workflow:release": "act release --container-architecture linux/amd64 -n",
21
34
  "test:workflow:build-binaries": "act release -j build-binaries --container-architecture linux/amd64",