@hua-labs/tap 0.1.1 → 0.2.0

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@hua-labs/tap",
3
- "version": "0.1.1",
4
- "description": "Multi-agent orchestration protocol for AI coding sessions — parallel worktrees, cross-model communication, headless reviewers, CLI tooling",
3
+ "version": "0.2.0",
4
+ "description": "Zero-dependency CLI for cross-model AI agent communication setup",
5
5
  "bin": {
6
6
  "tap-comms": "./bin/tap-comms.mjs"
7
7
  },
@@ -27,7 +27,11 @@
27
27
  "test": "vitest run",
28
28
  "test:watch": "vitest"
29
29
  },
30
+ "dependencies": {
31
+ "ws": "^8.19.0"
32
+ },
30
33
  "devDependencies": {
34
+ "@modelcontextprotocol/sdk": "^1.27.1",
31
35
  "@types/node": "^24.6.0",
32
36
  "tsup": "^8.5.1",
33
37
  "typescript": "^5.9.3",
@@ -50,13 +54,12 @@
50
54
  "type": "git",
51
55
  "url": "https://github.com/HUA-Labs/tap.git"
52
56
  },
53
- "homepage": "https://github.com/HUA-Labs/tap#readme",
54
57
  "sideEffects": false,
55
58
  "engines": {
56
59
  "node": ">=22.6.0"
57
60
  },
58
61
  "publishConfig": {
59
62
  "access": "public",
60
- "provenance": false
63
+ "provenance": true
61
64
  }
62
65
  }