@acampkin/mcc 2.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/package.json ADDED
@@ -0,0 +1,108 @@
1
+ {
2
+ "name": "@acampkin/mcc",
3
+ "version": "2.1.0",
4
+ "description": "MCC - Multi-Client Coder for Claude | Session-aware launcher with autopilot | Built by Velocity Digital",
5
+ "author": "Velocity Digital",
6
+ "homepage": "https://velocitydigi.com",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/velocity-digital/mcc.git"
10
+ },
11
+ "bugs": {
12
+ "url": "https://github.com/velocity-digital/mcc/issues"
13
+ },
14
+ "main": "dist/index.mjs",
15
+ "module": "dist/index.mjs",
16
+ "exports": {
17
+ ".": {
18
+ "import": "./dist/index.mjs"
19
+ },
20
+ "./v1": {
21
+ "import": "./dist-v1/index.mjs"
22
+ }
23
+ },
24
+ "bin": {
25
+ "mcc": "./dist/index.mjs",
26
+ "mcc-v1": "./dist-v1/index.mjs"
27
+ },
28
+ "type": "module",
29
+ "files": [
30
+ "dist/*.mjs",
31
+ "dist-v1/*.mjs",
32
+ "package.json",
33
+ "README.md"
34
+ ],
35
+ "engines": {
36
+ "node": ">=20.0.0"
37
+ },
38
+ "os": [
39
+ "darwin",
40
+ "linux",
41
+ "win32"
42
+ ],
43
+ "publishConfig": {
44
+ "access": "public",
45
+ "registry": "https://registry.npmjs.org/"
46
+ },
47
+ "scripts": {
48
+ "dev": "tsx src/index.ts",
49
+ "build": "tsc",
50
+ "build:bundle": "tsup",
51
+ "build:v1": "tsup --config tsup.v1.config.ts",
52
+ "start": "node dist/index.mjs",
53
+ "lint": "eslint src/",
54
+ "lint:fix": "eslint src/ --fix",
55
+ "typecheck": "tsc --noEmit",
56
+ "test": "NODE_OPTIONS='--max-old-space-size=8192' vitest run",
57
+ "test:watch": "NODE_OPTIONS='--max-old-space-size=8192' vitest",
58
+ "test:coverage": "NODE_OPTIONS='--max-old-space-size=8192' vitest run --coverage",
59
+ "check": "npm run typecheck && npm run lint",
60
+ "prepublishOnly": "npm run check && npm run build:bundle",
61
+ "link": "npm run build:bundle && npm link",
62
+ "link:v1": "npm run build:v1 && npm link",
63
+ "release:v1": "npm run check && npm run build:v1",
64
+ "test:e2e": "playwright test",
65
+ "test:e2e:headed": "playwright test --headed",
66
+ "test:e2e:report": "playwright show-report"
67
+ },
68
+ "keywords": [
69
+ "claude",
70
+ "anthropic",
71
+ "multi-client",
72
+ "session-management",
73
+ "autopilot",
74
+ "cli",
75
+ "launcher"
76
+ ],
77
+ "license": "MIT",
78
+ "dependencies": {
79
+ "@anthropic-ai/claude-code": "2.1.15",
80
+ "@anthropic-ai/sdk": "^0.26.0",
81
+ "better-sqlite3": "12.6.2",
82
+ "chalk": "^5.3.0",
83
+ "commander": "^12.1.0",
84
+ "inquirer": "^10.2.0",
85
+ "ioredis": "5.9.2",
86
+ "ora": "9.0.0",
87
+ "p-retry": "7.1.1",
88
+ "tar": "^7.4.3",
89
+ "unzipper": "^0.12.3",
90
+ "update-notifier": "^7.3.1",
91
+ "yaml": "^2.5.0",
92
+ "zod": "4.3.5"
93
+ },
94
+ "devDependencies": {
95
+ "@eslint/js": "9.39.2",
96
+ "@playwright/test": "^1.58.2",
97
+ "@types/better-sqlite3": "7.6.13",
98
+ "@types/eslint__js": "8.42.3",
99
+ "@types/node": "^22.0.0",
100
+ "@vitest/coverage-v8": "^4.0.17",
101
+ "eslint": "9.39.2",
102
+ "tsup": "8.5.1",
103
+ "tsx": "^4.19.0",
104
+ "typescript": "^5.5.0",
105
+ "typescript-eslint": "8.53.0",
106
+ "vitest": "4.0.17"
107
+ }
108
+ }