codeam-cli 1.0.4 → 1.0.5
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 +56 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -106,7 +106,62 @@ var { getConfig, ensurePluginId, addSession, removeSession, setActiveSession, ge
|
|
|
106
106
|
|
|
107
107
|
// src/ui/banner.ts
|
|
108
108
|
var import_picocolors = __toESM(require("picocolors"));
|
|
109
|
-
|
|
109
|
+
|
|
110
|
+
// package.json
|
|
111
|
+
var package_default = {
|
|
112
|
+
name: "codeam-cli",
|
|
113
|
+
version: "1.0.5",
|
|
114
|
+
description: "Remote control Claude Code from your mobile device",
|
|
115
|
+
main: "dist/index.js",
|
|
116
|
+
bin: {
|
|
117
|
+
codeam: "dist/index.js"
|
|
118
|
+
},
|
|
119
|
+
files: [
|
|
120
|
+
"dist",
|
|
121
|
+
"README.md"
|
|
122
|
+
],
|
|
123
|
+
scripts: {
|
|
124
|
+
build: "tsup",
|
|
125
|
+
dev: "tsup --watch",
|
|
126
|
+
test: "vitest run",
|
|
127
|
+
typecheck: "tsc --noEmit",
|
|
128
|
+
postinstall: "node dist/postinstall.js || true",
|
|
129
|
+
prepublishOnly: "npm run build"
|
|
130
|
+
},
|
|
131
|
+
keywords: [
|
|
132
|
+
"claude",
|
|
133
|
+
"claude-code",
|
|
134
|
+
"ai",
|
|
135
|
+
"cli",
|
|
136
|
+
"remote-control",
|
|
137
|
+
"codeagent"
|
|
138
|
+
],
|
|
139
|
+
author: "Edgar Durand",
|
|
140
|
+
repository: {
|
|
141
|
+
type: "git",
|
|
142
|
+
url: "git+https://github.com/edgardurand/codeagent-mobile.git"
|
|
143
|
+
},
|
|
144
|
+
license: "MIT",
|
|
145
|
+
engines: {
|
|
146
|
+
node: ">=18.0.0"
|
|
147
|
+
},
|
|
148
|
+
dependencies: {
|
|
149
|
+
"@clack/prompts": "^0.10.0",
|
|
150
|
+
"node-pty": "^1.0.0",
|
|
151
|
+
picocolors: "^1.1.0",
|
|
152
|
+
ws: "^8.18.0"
|
|
153
|
+
},
|
|
154
|
+
devDependencies: {
|
|
155
|
+
"@types/node": "^22.0.0",
|
|
156
|
+
"@types/ws": "^8.5.0",
|
|
157
|
+
tsup: "^8.0.0",
|
|
158
|
+
typescript: "^5.0.0",
|
|
159
|
+
vitest: "^2.1.0"
|
|
160
|
+
}
|
|
161
|
+
};
|
|
162
|
+
|
|
163
|
+
// src/ui/banner.ts
|
|
164
|
+
var VERSION = package_default.version;
|
|
110
165
|
function showIntro() {
|
|
111
166
|
console.log("");
|
|
112
167
|
console.log(` ${import_picocolors.default.bold(import_picocolors.default.cyan("codeam"))} ${import_picocolors.default.dim(`v${VERSION}`)}`);
|