claude-b 0.4.2 → 0.4.3

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 (2) hide show
  1. package/dist/cli/index.js +71 -1
  2. package/package.json +1 -1
package/dist/cli/index.js CHANGED
@@ -157,8 +157,78 @@ var DaemonClient = class extends EventEmitter {
157
157
  }
158
158
  };
159
159
 
160
+ // package.json
161
+ var package_default = {
162
+ name: "claude-b",
163
+ version: "0.4.3",
164
+ description: "Background-capable Claude Code with async workflows and REST API",
165
+ type: "module",
166
+ main: "dist/cli/index.js",
167
+ bin: {
168
+ cb: "./bin/cb"
169
+ },
170
+ scripts: {
171
+ dev: "tsup src/cli/index.ts src/daemon/index.ts --watch --format esm",
172
+ build: "tsup src/cli/index.ts src/daemon/index.ts --format esm --dts --clean",
173
+ test: "vitest",
174
+ lint: "eslint src/",
175
+ typecheck: "tsc --noEmit",
176
+ "start:daemon": "node dist/daemon/index.js"
177
+ },
178
+ dependencies: {
179
+ "@anthropic-ai/sdk": "^0.74.0",
180
+ "@fastify/cors": "^10.0.0",
181
+ "@fastify/jwt": "^9.0.0",
182
+ "@fastify/rate-limit": "^10.0.0",
183
+ "@fastify/websocket": "^11.0.0",
184
+ "@speechmatics/batch-client": "^5.1.0",
185
+ chalk: "^5.3.0",
186
+ commander: "^12.1.0",
187
+ fastify: "^5.0.0",
188
+ nanoid: "^5.0.7",
189
+ "node-pty": "^1.0.0",
190
+ "node-telegram-bot-api": "^0.67.0",
191
+ ora: "^8.1.0",
192
+ "strip-ansi": "^7.1.0",
193
+ ws: "^8.18.0"
194
+ },
195
+ devDependencies: {
196
+ "@types/node": "^22.10.0",
197
+ "@types/node-telegram-bot-api": "^0.64.13",
198
+ "@types/ws": "^8.18.1",
199
+ "@typescript-eslint/eslint-plugin": "^8.53.0",
200
+ "@typescript-eslint/parser": "^8.53.0",
201
+ eslint: "^9.39.2",
202
+ tsup: "^8.3.0",
203
+ typescript: "^5.7.0",
204
+ vitest: "^2.1.0"
205
+ },
206
+ engines: {
207
+ node: ">=20.0.0"
208
+ },
209
+ keywords: [
210
+ "claude",
211
+ "ai",
212
+ "cli",
213
+ "background",
214
+ "async",
215
+ "anthropic",
216
+ "claude-code"
217
+ ],
218
+ author: "danimoya",
219
+ license: "Apache-2.0",
220
+ repository: {
221
+ type: "git",
222
+ url: "git+https://github.com/danimoya/Claude-B.git"
223
+ },
224
+ homepage: "https://github.com/danimoya/Claude-B#readme",
225
+ bugs: {
226
+ url: "https://github.com/danimoya/Claude-B/issues"
227
+ }
228
+ };
229
+
160
230
  // src/utils/version.ts
161
- var version = "0.1.0";
231
+ var version = package_default.version;
162
232
 
163
233
  // src/cli/init.ts
164
234
  import { createInterface } from "readline";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-b",
3
- "version": "0.4.2",
3
+ "version": "0.4.3",
4
4
  "description": "Background-capable Claude Code with async workflows and REST API",
5
5
  "type": "module",
6
6
  "main": "dist/cli/index.js",