@ccpocket/bridge 1.33.1 → 1.33.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/LICENSE +12 -0
- package/README.md +15 -1
- package/package.json +4 -3
package/LICENSE
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
This package is part of the CC Pocket project.
|
|
2
|
+
|
|
3
|
+
License: SEE LICENSE IN LICENSE
|
|
4
|
+
|
|
5
|
+
The governing license for this package is the repository root LICENSE, including
|
|
6
|
+
the Bridge Redistribution Exception that applies to the Bridge Server component.
|
|
7
|
+
|
|
8
|
+
Repository:
|
|
9
|
+
https://github.com/K9i-0/ccpocket
|
|
10
|
+
|
|
11
|
+
Root license:
|
|
12
|
+
https://github.com/K9i-0/ccpocket/blob/main/LICENSE
|
package/README.md
CHANGED
|
@@ -88,4 +88,18 @@ The bridge server spawns and manages Claude Code CLI processes, translating WebS
|
|
|
88
88
|
|
|
89
89
|
## License
|
|
90
90
|
|
|
91
|
-
[
|
|
91
|
+
This package is governed by the [CC Pocket license](../../LICENSE).
|
|
92
|
+
|
|
93
|
+
The repository remains under FSL-1.1-MIT, with a specific Bridge Redistribution
|
|
94
|
+
Exception that allows unofficial redistribution of the Bridge Server, including
|
|
95
|
+
environment-specific builds and forks for Windows, WSL, proxy-restricted, or
|
|
96
|
+
other hard-to-validate environments.
|
|
97
|
+
|
|
98
|
+
If you redistribute this package or a modified fork:
|
|
99
|
+
|
|
100
|
+
- do not imply it is official, endorsed, or supported by the CC Pocket maintainer
|
|
101
|
+
- preserve the license text and clearly state that the software is provided "AS IS"
|
|
102
|
+
- make clear that compliance with Anthropic, OpenAI, network, enterprise, and other third-party terms is the responsibility of the redistributor and end user
|
|
103
|
+
|
|
104
|
+
In short: unofficial Bridge redistributions are permitted for compatibility and
|
|
105
|
+
support purposes, but they remain unsupported and at your own risk.
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ccpocket/bridge",
|
|
3
|
-
"version": "1.33.
|
|
3
|
+
"version": "1.33.2",
|
|
4
4
|
"description": "Bridge server that connects Claude Code and Codex CLI to mobile devices via WebSocket",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
7
|
-
"license": "
|
|
7
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
8
8
|
"author": "K9i",
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
@@ -30,7 +30,8 @@
|
|
|
30
30
|
},
|
|
31
31
|
"main": "dist/index.js",
|
|
32
32
|
"files": [
|
|
33
|
-
"dist"
|
|
33
|
+
"dist",
|
|
34
|
+
"LICENSE"
|
|
34
35
|
],
|
|
35
36
|
"engines": {
|
|
36
37
|
"node": ">=18.0.0"
|