ccfly 0.1.0 → 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 (1) hide show
  1. package/package.json +15 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ccfly",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "Local Go control service for Claude Code sessions (reads ~/.claude jsonl + drives tmux).",
5
5
  "license": "MIT",
6
6
  "type": "commonjs",
@@ -13,9 +13,19 @@
13
13
  "keywords": [
14
14
  "claude",
15
15
  "claude-code",
16
+ "anthropic",
17
+ "ai-agent",
18
+ "coding-agent",
16
19
  "tmux",
17
20
  "terminal",
21
+ "web-terminal",
22
+ "ttyd",
23
+ "pty",
18
24
  "websocket",
25
+ "remote",
26
+ "mobile",
27
+ "code-anywhere",
28
+ "self-hosted",
19
29
  "cli",
20
30
  "ccfly"
21
31
  ],
@@ -33,10 +43,10 @@
33
43
  "comment:platform": "The main package intentionally constrains os/cpu only loosely; the bin shim does the real platform check and resolves the matching ccfly-<os>-<arch> optionalDependency at runtime.",
34
44
  "comment:optionalDependencies": "Per-platform prebuilt binary subpackages. Exactly one installs based on the consumer's os/cpu (npm honors each subpackage's own os/cpu fields). Versions are pinned in lockstep with this package and bumped together by CI/changesets. bin/ccfly.js resolves the matching package at runtime.",
35
45
  "optionalDependencies": {
36
- "ccfly-darwin-arm64": "0.1.0",
37
- "ccfly-darwin-x64": "0.1.0",
38
- "ccfly-linux-arm64": "0.1.0",
39
- "ccfly-linux-x64": "0.1.0"
46
+ "ccfly-darwin-arm64": "0.2.0",
47
+ "ccfly-darwin-x64": "0.2.0",
48
+ "ccfly-linux-arm64": "0.2.0",
49
+ "ccfly-linux-x64": "0.2.0"
40
50
  },
41
51
  "author": "ccfly",
42
52
  "homepage": "https://github.com/jsdvjx/ccfly#readme",