logseq-mcp 0.0.3 → 0.0.5

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 +0 -2
  2. package/package.json +12 -3
package/dist/index.js CHANGED
@@ -1,5 +1,3 @@
1
- #!/usr/bin/env bun
2
- // @bun
3
1
  import { createRequire } from "node:module";
4
2
  var __create = Object.create;
5
3
  var __getProtoOf = Object.getPrototypeOf;
package/package.json CHANGED
@@ -1,16 +1,25 @@
1
1
  {
2
2
  "name": "logseq-mcp",
3
- "version": "0.0.3",
3
+ "version": "0.0.5",
4
4
  "description": "Logseq Model Context Protocol Agent",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
+ "bin": {
8
+ "logseq-mcp": "dist/index.js"
9
+ },
7
10
  "scripts": {
8
11
  "start": "bun run src/index.ts",
9
12
  "test": "bun test tests/",
10
13
  "build:macos-arm": "bun build --compile --target=bun-darwin-arm64 src/index.ts --outfile logseq-mcp",
11
14
  "build:macos-intel": "bun build --compile --target=bun-darwin-x64 src/index.ts --outfile logseq-mcp-intel",
12
- "build": "bun build src/index.ts --outdir dist --target node",
13
- "prepublishOnly": "bun run build"
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 && chmod +x dist/index.js",
19
+ "prepublishOnly": "bun run build",
20
+ "test:workflow:release": "act release --container-architecture linux/amd64 -n",
21
+ "test:workflow:build-binaries": "act release -j build-binaries --container-architecture linux/amd64",
22
+ "test:workflow:publish": "act release -j publish --container-architecture linux/amd64"
14
23
  },
15
24
  "dependencies": {
16
25
  "@modelcontextprotocol/sdk": "latest",