@naarang/ccc 2.0.0-beta.1 → 2.0.0-beta.2
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/dist/index.js +41 -357
- package/dist/scripts/install.ps1 +2 -1
- package/dist/scripts/install.sh +2 -1
- package/package.json +1 -2
- package/scripts/install.ps1 +2 -1
- package/scripts/install.sh +2 -1
package/dist/scripts/install.ps1
CHANGED
|
@@ -6,7 +6,8 @@
|
|
|
6
6
|
$ErrorActionPreference = "Stop"
|
|
7
7
|
|
|
8
8
|
# Configuration
|
|
9
|
-
|
|
9
|
+
# Public releases repository (binaries are published here for public access)
|
|
10
|
+
$GITHUB_REPO = "vishal-android-freak/ccc-releases"
|
|
10
11
|
$INSTALL_DIR = if ($env:CCC_INSTALL_DIR) { $env:CCC_INSTALL_DIR } else { "$env:USERPROFILE\.ccc" }
|
|
11
12
|
$BIN_DIR = "$INSTALL_DIR\bin"
|
|
12
13
|
|
package/dist/scripts/install.sh
CHANGED
|
@@ -16,7 +16,8 @@ NC='\033[0m'
|
|
|
16
16
|
BOLD='\033[1m'
|
|
17
17
|
|
|
18
18
|
# Configuration
|
|
19
|
-
|
|
19
|
+
# Public releases repository (binaries are published here for public access)
|
|
20
|
+
GITHUB_REPO="vishal-android-freak/ccc-releases"
|
|
20
21
|
INSTALL_DIR="${CCC_INSTALL_DIR:-$HOME/.ccc}"
|
|
21
22
|
BIN_DIR="$INSTALL_DIR/bin"
|
|
22
23
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@naarang/ccc",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.2",
|
|
4
4
|
"description": "Code Chat Connect - Control Claude Code from your mobile device",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -64,7 +64,6 @@
|
|
|
64
64
|
"@xterm/xterm": "^5.5.0",
|
|
65
65
|
"aedes": "^0.51.3",
|
|
66
66
|
"aedes-server-factory": "^0.2.1",
|
|
67
|
-
"bonjour-service": "^1.3.0",
|
|
68
67
|
"bun-pty": "^0.4.2",
|
|
69
68
|
"expo-server-sdk": "^4.0.0",
|
|
70
69
|
"figlet": "^1.9.3",
|
package/scripts/install.ps1
CHANGED
|
@@ -6,7 +6,8 @@
|
|
|
6
6
|
$ErrorActionPreference = "Stop"
|
|
7
7
|
|
|
8
8
|
# Configuration
|
|
9
|
-
|
|
9
|
+
# Public releases repository (binaries are published here for public access)
|
|
10
|
+
$GITHUB_REPO = "vishal-android-freak/ccc-releases"
|
|
10
11
|
$INSTALL_DIR = if ($env:CCC_INSTALL_DIR) { $env:CCC_INSTALL_DIR } else { "$env:USERPROFILE\.ccc" }
|
|
11
12
|
$BIN_DIR = "$INSTALL_DIR\bin"
|
|
12
13
|
|
package/scripts/install.sh
CHANGED
|
@@ -16,7 +16,8 @@ NC='\033[0m'
|
|
|
16
16
|
BOLD='\033[1m'
|
|
17
17
|
|
|
18
18
|
# Configuration
|
|
19
|
-
|
|
19
|
+
# Public releases repository (binaries are published here for public access)
|
|
20
|
+
GITHUB_REPO="vishal-android-freak/ccc-releases"
|
|
20
21
|
INSTALL_DIR="${CCC_INSTALL_DIR:-$HOME/.ccc}"
|
|
21
22
|
BIN_DIR="$INSTALL_DIR/bin"
|
|
22
23
|
|