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.
Files changed (48) hide show
  1. package/LICENSE +202 -0
  2. package/NOTICE +19 -0
  3. package/README.md +57 -4
  4. package/THIRD_PARTY_NOTICES.txt +582 -0
  5. package/bin/cosyncing +1829 -0
  6. package/bin/cosyncing-web-0.2.0/assets/AssetManifest.bin +1 -0
  7. package/bin/cosyncing-web-0.2.0/assets/AssetManifest.bin.json +1 -0
  8. package/bin/cosyncing-web-0.2.0/assets/FontManifest.json +1 -0
  9. package/bin/cosyncing-web-0.2.0/assets/NOTICES +34313 -0
  10. package/bin/cosyncing-web-0.2.0/assets/fonts/MaterialIcons-Regular.otf +0 -0
  11. package/bin/cosyncing-web-0.2.0/assets/packages/cupertino_icons/assets/CupertinoIcons.ttf +0 -0
  12. package/bin/cosyncing-web-0.2.0/assets/packages/flutter_local_notifications_web/web/notifications_service_worker.js +77 -0
  13. package/bin/cosyncing-web-0.2.0/assets/shaders/ink_sparkle.frag +127 -0
  14. package/bin/cosyncing-web-0.2.0/assets/shaders/stretch_effect.frag +64 -0
  15. package/bin/cosyncing-web-0.2.0/canvaskit/canvaskit.js +193 -0
  16. package/bin/cosyncing-web-0.2.0/canvaskit/canvaskit.wasm +0 -0
  17. package/bin/cosyncing-web-0.2.0/canvaskit/chromium/canvaskit.js +193 -0
  18. package/bin/cosyncing-web-0.2.0/canvaskit/chromium/canvaskit.wasm +0 -0
  19. package/bin/cosyncing-web-0.2.0/canvaskit/experimental_webparagraph/canvaskit.js +171 -0
  20. package/bin/cosyncing-web-0.2.0/canvaskit/experimental_webparagraph/canvaskit.wasm +0 -0
  21. package/bin/cosyncing-web-0.2.0/canvaskit/skwasm.js +146 -0
  22. package/bin/cosyncing-web-0.2.0/canvaskit/skwasm.wasm +0 -0
  23. package/bin/cosyncing-web-0.2.0/canvaskit/skwasm_heavy.js +146 -0
  24. package/bin/cosyncing-web-0.2.0/canvaskit/skwasm_heavy.wasm +0 -0
  25. package/bin/cosyncing-web-0.2.0/canvaskit/wimp.js +135 -0
  26. package/bin/cosyncing-web-0.2.0/canvaskit/wimp.wasm +0 -0
  27. package/bin/cosyncing-web-0.2.0/cosyncing-build-identity.json +20 -0
  28. package/bin/cosyncing-web-0.2.0/cosyncing-cache-manifest.json +85 -0
  29. package/bin/cosyncing-web-0.2.0/drift_worker.js +13185 -0
  30. package/bin/cosyncing-web-0.2.0/favicon.ico +0 -0
  31. package/bin/cosyncing-web-0.2.0/favicon.svg +8 -0
  32. package/bin/cosyncing-web-0.2.0/flutter.js +31 -0
  33. package/bin/cosyncing-web-0.2.0/flutter_bootstrap.js +62 -0
  34. package/bin/cosyncing-web-0.2.0/icons/apple-touch-icon-180.png +0 -0
  35. package/bin/cosyncing-web-0.2.0/icons/pwa-icon-192.png +0 -0
  36. package/bin/cosyncing-web-0.2.0/icons/pwa-icon-512.png +0 -0
  37. package/bin/cosyncing-web-0.2.0/icons/pwa-maskable-192.png +0 -0
  38. package/bin/cosyncing-web-0.2.0/icons/pwa-maskable-512.png +0 -0
  39. package/bin/cosyncing-web-0.2.0/icons/pwa-monochrome-192.png +0 -0
  40. package/bin/cosyncing-web-0.2.0/icons/pwa-monochrome-512.png +0 -0
  41. package/bin/cosyncing-web-0.2.0/index.html +1890 -0
  42. package/bin/cosyncing-web-0.2.0/main.dart.js +206823 -0
  43. package/bin/cosyncing-web-0.2.0/manifest.json +49 -0
  44. package/bin/cosyncing-web-0.2.0/sqlite3.wasm +0 -0
  45. package/bin/cosyncing-web-0.2.0/sw.js +597 -0
  46. package/bin/cosyncing-web-0.2.0/version.json +1 -0
  47. package/package.json +39 -6
  48. package/index.js +0 -1
package/package.json CHANGED
@@ -1,10 +1,43 @@
1
1
  {
2
2
  "name": "cosyncing",
3
- "version": "0.0.1",
4
- "description": "cosyncing — view and drive your CLI coding-agent sessions (OpenCode, Codex, Pi, Claude Code) from your phone or browser, over your own network. Name reserved; the packaged CLI (alias: cosy) will be published here.",
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
- "main": "index.js",
9
- "files": ["index.js", "README.md"]
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.');