claudemesh-cli 0.10.7 → 1.0.0-alpha.1

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": "claudemesh-cli",
3
- "version": "0.10.7",
4
- "description": "Claude Code MCP client for claudemeshpeer mesh messaging between Claude sessions.",
3
+ "version": "1.0.0-alpha.1",
4
+ "description": "Peer mesh for Claude Code sessionsCLI + MCP server.",
5
5
  "keywords": [
6
6
  "claude-code",
7
7
  "mcp",
@@ -16,11 +16,11 @@
16
16
  "repository": {
17
17
  "type": "git",
18
18
  "url": "https://github.com/alezmad/claudemesh.git",
19
- "directory": "apps/cli"
19
+ "directory": "apps/cli-v2"
20
20
  },
21
21
  "type": "module",
22
22
  "bin": {
23
- "claudemesh": "./dist/index.js"
23
+ "claudemesh": "./dist/entrypoints/cli.js"
24
24
  },
25
25
  "files": [
26
26
  "dist",
@@ -48,16 +48,16 @@
48
48
  "prettier": "3.6.2",
49
49
  "typescript": "5.9.3",
50
50
  "vitest": "4.0.14",
51
+ "@turbostarter/vitest-config": "0.1.0",
51
52
  "@turbostarter/tsconfig": "0.1.0",
52
53
  "@turbostarter/eslint-config": "0.1.0",
53
- "@turbostarter/prettier-config": "0.1.0",
54
- "@turbostarter/vitest-config": "0.1.0"
54
+ "@turbostarter/prettier-config": "0.1.0"
55
55
  },
56
56
  "scripts": {
57
- "build": "bun build src/index.ts --target=node --outfile dist/index.js --banner \"#!/usr/bin/env node\" && chmod +x dist/index.js",
57
+ "build": "bun build.ts",
58
58
  "clean": "git clean -xdf .cache .turbo dist node_modules",
59
- "dev": "bun --hot src/index.ts",
60
- "start": "bun src/index.ts",
59
+ "dev": "bun --hot src/entrypoints/cli.ts",
60
+ "start": "bun src/entrypoints/cli.ts",
61
61
  "format": "prettier --check . --ignore-path ../../.gitignore",
62
62
  "lint": "eslint",
63
63
  "test": "vitest run",