cli-chat-mcp 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 ADDED
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "cli-chat-mcp",
3
+ "version": "0.2.0",
4
+ "type": "module",
5
+ "description": "Headless cross-CLI messenger for coding agents (MCP)",
6
+ "bin": {
7
+ "cli-chat": "dist/server-net.js"
8
+ },
9
+ "files": [
10
+ "dist",
11
+ "README.md"
12
+ ],
13
+ "engines": {
14
+ "node": ">=22.6.0"
15
+ },
16
+ "scripts": {
17
+ "build": "node build.mjs",
18
+ "prepublishOnly": "node build.mjs",
19
+ "test": "node --test \"test/unit/*.test.ts\" \"test/integration/*.test.ts\"",
20
+ "test:unit": "node --test \"test/unit/*.test.ts\"",
21
+ "test:integration": "node --test \"test/integration/*.test.ts\"",
22
+ "test:coverage": "node --test --experimental-test-coverage \"test/unit/*.test.ts\" \"test/integration/*.test.ts\"",
23
+ "test:e2e": "node test/e2e/live-net.ts",
24
+ "test:mcp": "node test/e2e/live-net-mcp.ts",
25
+ "init": "node src/init-identity.ts",
26
+ "migrate": "node src/migrate.ts",
27
+ "install-clis": "node src/install.ts",
28
+ "add-contact": "node src/add-contact.ts",
29
+ "mailbox": "node server-mailbox/node.ts",
30
+ "server": "node src/server-net.ts",
31
+ "deploy": "wrangler deploy"
32
+ },
33
+ "dependencies": {
34
+ "@hono/node-server": "^2.0.5",
35
+ "@modelcontextprotocol/sdk": "^1.0.0",
36
+ "hono": "^4.12.25",
37
+ "libsodium-wrappers": "^0.8.4",
38
+ "zod": "^3.23.8"
39
+ },
40
+ "devDependencies": {
41
+ "esbuild": "^0.28.1"
42
+ },
43
+ "allowScripts": {
44
+ "esbuild@0.28.1": true
45
+ }
46
+ }