clinkx 0.2.1 → 0.2.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.
Files changed (1) hide show
  1. package/package.json +3 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clinkx",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "ClinkX MCP STDIO server — CLI-to-CLI bridge tool",
5
5
  "type": "module",
6
6
  "engines": {
@@ -20,11 +20,12 @@
20
20
  "build:all": "npm --prefix clinkx-workflows run build && npm run build",
21
21
  "start": "node dist/index.js",
22
22
  "test": "vitest run",
23
- "prepublishOnly": "npm --prefix clinkx-workflows run build && npm run build"
23
+ "prepublishOnly": "npm --prefix clinkx-workflows run build && npm run build && node -e \"const root=require('./package.json').dependencies;const sub=require('./clinkx-workflows/package.json').dependencies;const missing=Object.keys(sub).filter(d=>!root[d]);if(missing.length){console.error('Missing from root deps:',missing);process.exit(1);}\""
24
24
  },
25
25
  "dependencies": {
26
26
  "@modelcontextprotocol/sdk": "^1.27.1",
27
27
  "pino": "^9.6.0",
28
+ "yaml": "^2.7.0",
28
29
  "zod": "^3.24.0",
29
30
  "zod-to-json-schema": "^3.24.0"
30
31
  },