@adhdev/daemon-standalone 0.9.67 → 0.9.69

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/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "@adhdev/daemon-standalone",
3
- "version": "0.9.67",
3
+ "version": "0.9.69",
4
4
  "description": "ADHDev standalone daemon \u2014 embedded HTTP/WS server for local dashboard",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
7
7
  "adhdev-standalone": "./dist/index.js",
8
- "adhdev": "./dist/index.js"
8
+ "adhdev": "./dist/index.js",
9
+ "adhdev-mcp": "./vendor/mcp-server/index.js"
9
10
  },
10
11
  "scripts": {
11
12
  "preinstall": "node -e \"const major=Number.parseInt(process.versions.node.split('.')[0],10); if (process.platform === 'win32' && major >= 24) { console.error('\\n\u2717 ADHDev standalone does not currently support Node.js 24+ on Windows.\\n Install Node.js 22.x on Windows, then retry.\\n'); process.exit(1); }\"",
@@ -16,7 +17,7 @@
16
17
  "start": "node dist/index.js",
17
18
  "test": "node --import tsx --test test/*.test.ts",
18
19
  "typecheck": "tsc --noEmit -p tsconfig.json",
19
- "prepublishOnly": "cd ../.. && npm run build -w packages/session-host-daemon && npm run build -w packages/daemon-core && npm run build -w packages/web-standalone && cd packages/daemon-standalone && npm run bundle:web && npm run bundle:vendor && npm run build"
20
+ "prepublishOnly": "cd ../.. && npm run build -w packages/session-host-daemon && npm run build -w packages/mcp-server && npm run build -w packages/daemon-core && npm run build -w packages/web-standalone && cd packages/daemon-standalone && npm run bundle:web && npm run bundle:vendor && npm run build"
20
21
  },
21
22
  "files": [
22
23
  "dist",