cosyncing 0.0.1 → 0.2.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/LICENSE +202 -0
- package/NOTICE +19 -0
- package/README.md +57 -4
- package/THIRD_PARTY_NOTICES.txt +582 -0
- package/bin/cosyncing +1829 -0
- package/bin/cosyncing-web-0.2.0/assets/AssetManifest.bin +1 -0
- package/bin/cosyncing-web-0.2.0/assets/AssetManifest.bin.json +1 -0
- package/bin/cosyncing-web-0.2.0/assets/FontManifest.json +1 -0
- package/bin/cosyncing-web-0.2.0/assets/NOTICES +34313 -0
- package/bin/cosyncing-web-0.2.0/assets/fonts/MaterialIcons-Regular.otf +0 -0
- package/bin/cosyncing-web-0.2.0/assets/packages/cupertino_icons/assets/CupertinoIcons.ttf +0 -0
- package/bin/cosyncing-web-0.2.0/assets/packages/flutter_local_notifications_web/web/notifications_service_worker.js +77 -0
- package/bin/cosyncing-web-0.2.0/assets/shaders/ink_sparkle.frag +127 -0
- package/bin/cosyncing-web-0.2.0/assets/shaders/stretch_effect.frag +64 -0
- package/bin/cosyncing-web-0.2.0/canvaskit/canvaskit.js +193 -0
- package/bin/cosyncing-web-0.2.0/canvaskit/canvaskit.wasm +0 -0
- package/bin/cosyncing-web-0.2.0/canvaskit/chromium/canvaskit.js +193 -0
- package/bin/cosyncing-web-0.2.0/canvaskit/chromium/canvaskit.wasm +0 -0
- package/bin/cosyncing-web-0.2.0/canvaskit/experimental_webparagraph/canvaskit.js +171 -0
- package/bin/cosyncing-web-0.2.0/canvaskit/experimental_webparagraph/canvaskit.wasm +0 -0
- package/bin/cosyncing-web-0.2.0/canvaskit/skwasm.js +146 -0
- package/bin/cosyncing-web-0.2.0/canvaskit/skwasm.wasm +0 -0
- package/bin/cosyncing-web-0.2.0/canvaskit/skwasm_heavy.js +146 -0
- package/bin/cosyncing-web-0.2.0/canvaskit/skwasm_heavy.wasm +0 -0
- package/bin/cosyncing-web-0.2.0/canvaskit/wimp.js +135 -0
- package/bin/cosyncing-web-0.2.0/canvaskit/wimp.wasm +0 -0
- package/bin/cosyncing-web-0.2.0/cosyncing-build-identity.json +20 -0
- package/bin/cosyncing-web-0.2.0/cosyncing-cache-manifest.json +85 -0
- package/bin/cosyncing-web-0.2.0/drift_worker.js +13185 -0
- package/bin/cosyncing-web-0.2.0/favicon.ico +0 -0
- package/bin/cosyncing-web-0.2.0/favicon.svg +8 -0
- package/bin/cosyncing-web-0.2.0/flutter.js +31 -0
- package/bin/cosyncing-web-0.2.0/flutter_bootstrap.js +62 -0
- package/bin/cosyncing-web-0.2.0/icons/apple-touch-icon-180.png +0 -0
- package/bin/cosyncing-web-0.2.0/icons/pwa-icon-192.png +0 -0
- package/bin/cosyncing-web-0.2.0/icons/pwa-icon-512.png +0 -0
- package/bin/cosyncing-web-0.2.0/icons/pwa-maskable-192.png +0 -0
- package/bin/cosyncing-web-0.2.0/icons/pwa-maskable-512.png +0 -0
- package/bin/cosyncing-web-0.2.0/icons/pwa-monochrome-192.png +0 -0
- package/bin/cosyncing-web-0.2.0/icons/pwa-monochrome-512.png +0 -0
- package/bin/cosyncing-web-0.2.0/index.html +1890 -0
- package/bin/cosyncing-web-0.2.0/main.dart.js +206823 -0
- package/bin/cosyncing-web-0.2.0/manifest.json +49 -0
- package/bin/cosyncing-web-0.2.0/sqlite3.wasm +0 -0
- package/bin/cosyncing-web-0.2.0/sw.js +597 -0
- package/bin/cosyncing-web-0.2.0/version.json +1 -0
- package/package.json +39 -6
- package/index.js +0 -1
package/package.json
CHANGED
|
@@ -1,10 +1,43 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cosyncing",
|
|
3
|
-
"version": "0.0
|
|
4
|
-
"description": "
|
|
5
|
-
"keywords": ["coding-agent", "codex", "claude-code", "opencode", "broker", "remote-control", "sync"],
|
|
6
|
-
"author": "Howard Mei",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "View and drive CLI coding-agent sessions through your own cosyncing broker.",
|
|
7
5
|
"license": "Apache-2.0",
|
|
8
|
-
"
|
|
9
|
-
"
|
|
6
|
+
"homepage": "https://github.com/cosyncing/cosyncing",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/cosyncing/cosyncing.git"
|
|
10
|
+
},
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/cosyncing/cosyncing/issues"
|
|
13
|
+
},
|
|
14
|
+
"keywords": [
|
|
15
|
+
"cosyncing",
|
|
16
|
+
"coding-agent",
|
|
17
|
+
"broker",
|
|
18
|
+
"cli"
|
|
19
|
+
],
|
|
20
|
+
"engines": {
|
|
21
|
+
"bun": ">=1.3.8"
|
|
22
|
+
},
|
|
23
|
+
"os": [
|
|
24
|
+
"linux",
|
|
25
|
+
"darwin"
|
|
26
|
+
],
|
|
27
|
+
"cpu": [
|
|
28
|
+
"x64",
|
|
29
|
+
"arm64"
|
|
30
|
+
],
|
|
31
|
+
"bin": {
|
|
32
|
+
"cosyncing": "bin/cosyncing",
|
|
33
|
+
"cosy": "bin/cosyncing"
|
|
34
|
+
},
|
|
35
|
+
"files": [
|
|
36
|
+
"bin/cosyncing",
|
|
37
|
+
"bin/cosyncing-web-0.2.0",
|
|
38
|
+
"README.md",
|
|
39
|
+
"LICENSE",
|
|
40
|
+
"NOTICE",
|
|
41
|
+
"THIRD_PARTY_NOTICES.txt"
|
|
42
|
+
]
|
|
10
43
|
}
|
package/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
console.log('cosyncing: this is a name-reservation placeholder. The packaged CLI (alias: cosy) will be published here.');
|