claudemesh-cli 0.1.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/README.md +59 -0
- package/dist/index.js +55858 -0
- package/package.json +66 -0
package/package.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "claudemesh-cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Claude Code MCP client for claudemesh — peer mesh messaging between Claude sessions.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"claude-code",
|
|
7
|
+
"mcp",
|
|
8
|
+
"model-context-protocol",
|
|
9
|
+
"claudemesh",
|
|
10
|
+
"peer-messaging",
|
|
11
|
+
"multi-agent"
|
|
12
|
+
],
|
|
13
|
+
"author": "Alejandro Gutiérrez",
|
|
14
|
+
"license": "MIT",
|
|
15
|
+
"homepage": "https://claudemesh.com",
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "https://github.com/alezmad/claudemesh.git",
|
|
19
|
+
"directory": "apps/cli"
|
|
20
|
+
},
|
|
21
|
+
"type": "module",
|
|
22
|
+
"bin": {
|
|
23
|
+
"claudemesh": "./dist/index.js"
|
|
24
|
+
},
|
|
25
|
+
"files": [
|
|
26
|
+
"dist",
|
|
27
|
+
"README.md",
|
|
28
|
+
"LICENSE"
|
|
29
|
+
],
|
|
30
|
+
"publishConfig": {
|
|
31
|
+
"access": "public"
|
|
32
|
+
},
|
|
33
|
+
"scripts": {
|
|
34
|
+
"build": "bun build src/index.ts --target=node --outfile dist/index.js --banner \"#!/usr/bin/env node\" && chmod +x dist/index.js",
|
|
35
|
+
"clean": "git clean -xdf .cache .turbo dist node_modules",
|
|
36
|
+
"dev": "bun --hot src/index.ts",
|
|
37
|
+
"start": "bun src/index.ts",
|
|
38
|
+
"format": "prettier --check . --ignore-path ../../.gitignore",
|
|
39
|
+
"lint": "eslint",
|
|
40
|
+
"prepublishOnly": "bun run build",
|
|
41
|
+
"test": "vitest run",
|
|
42
|
+
"typecheck": "tsc --noEmit"
|
|
43
|
+
},
|
|
44
|
+
"prettier": "@turbostarter/prettier-config",
|
|
45
|
+
"engines": {
|
|
46
|
+
"node": ">=20"
|
|
47
|
+
},
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"@modelcontextprotocol/sdk": "1.27.1",
|
|
50
|
+
"libsodium-wrappers": "0.7.15",
|
|
51
|
+
"ws": "8.20.0",
|
|
52
|
+
"zod": "4.1.13"
|
|
53
|
+
},
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"@turbostarter/eslint-config": "workspace:*",
|
|
56
|
+
"@turbostarter/prettier-config": "workspace:*",
|
|
57
|
+
"@turbostarter/tsconfig": "workspace:*",
|
|
58
|
+
"@turbostarter/vitest-config": "workspace:*",
|
|
59
|
+
"@types/libsodium-wrappers": "0.7.14",
|
|
60
|
+
"@types/ws": "8.5.13",
|
|
61
|
+
"eslint": "catalog:",
|
|
62
|
+
"prettier": "catalog:",
|
|
63
|
+
"typescript": "catalog:",
|
|
64
|
+
"vitest": "catalog:"
|
|
65
|
+
}
|
|
66
|
+
}
|