@naarang/ccc 3.1.0-beta.9 → 3.2.0-beta.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/README.md +69 -29
- package/dist/index.js +147 -135
- package/dist/scripts/postinstall.cjs +1 -1
- package/package.json +7 -1
- package/scripts/postinstall.cjs +1 -1
|
@@ -62,7 +62,7 @@ async function checkBunPty() {
|
|
|
62
62
|
}
|
|
63
63
|
|
|
64
64
|
async function main() {
|
|
65
|
-
console.log('[postinstall] Code Chat Connect
|
|
65
|
+
console.log('[postinstall] Code Chat Connect v3 - Post-installation check\n');
|
|
66
66
|
|
|
67
67
|
// Check bun-pty
|
|
68
68
|
const ptyWorks = await checkBunPty();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@naarang/ccc",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.2.0-beta.1",
|
|
4
4
|
"description": "Code Chat Connect - Control Claude Code from your mobile device",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -40,6 +40,11 @@
|
|
|
40
40
|
],
|
|
41
41
|
"author": "Vishal",
|
|
42
42
|
"license": "UNLICENSED",
|
|
43
|
+
"repository": {
|
|
44
|
+
"type": "git",
|
|
45
|
+
"url": "https://github.com/ccc-app/ccc.git",
|
|
46
|
+
"directory": "backend-v2"
|
|
47
|
+
},
|
|
43
48
|
"private": false,
|
|
44
49
|
"publishConfig": {
|
|
45
50
|
"access": "public"
|
|
@@ -77,6 +82,7 @@
|
|
|
77
82
|
"ws": "^8.18.3"
|
|
78
83
|
},
|
|
79
84
|
"devDependencies": {
|
|
85
|
+
"@mariozechner/pi-coding-agent": "0.71.1",
|
|
80
86
|
"typescript": "^5"
|
|
81
87
|
},
|
|
82
88
|
"optionalDependencies": {
|
package/scripts/postinstall.cjs
CHANGED
|
@@ -62,7 +62,7 @@ async function checkBunPty() {
|
|
|
62
62
|
}
|
|
63
63
|
|
|
64
64
|
async function main() {
|
|
65
|
-
console.log('[postinstall] Code Chat Connect
|
|
65
|
+
console.log('[postinstall] Code Chat Connect v3 - Post-installation check\n');
|
|
66
66
|
|
|
67
67
|
// Check bun-pty
|
|
68
68
|
const ptyWorks = await checkBunPty();
|