orbit-runner 0.1.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 (3) hide show
  1. package/README.md +69 -0
  2. package/dist/index.js +1445 -0
  3. package/package.json +37 -0
package/package.json ADDED
@@ -0,0 +1,37 @@
1
+ {
2
+ "name": "orbit-runner",
3
+ "version": "0.1.0",
4
+ "description": "Turn agent-ready Orbit tasks into headless Claude Code sessions on your own Claude subscription.",
5
+ "type": "module",
6
+ "bin": {
7
+ "orbit-runner": "./dist/index.js"
8
+ },
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "engines": {
13
+ "node": ">=18"
14
+ },
15
+ "scripts": {
16
+ "dev": "bun run src/index.ts",
17
+ "build": "bun build ./src/index.ts --outdir dist --target node --format esm --external @clack/prompts --external cac --external picocolors --external zod",
18
+ "prepublishOnly": "bun run build",
19
+ "typecheck": "tsc --noEmit",
20
+ "lint": "biome check .",
21
+ "lint:fix": "biome check --write ."
22
+ },
23
+ "dependencies": {
24
+ "@clack/prompts": "^1.7.0",
25
+ "cac": "^7.0.0",
26
+ "picocolors": "^1.1.1",
27
+ "zod": "^3.24.0"
28
+ },
29
+ "devDependencies": {
30
+ "@orbit/shared": "workspace:*",
31
+ "@types/node": "^22.0.0",
32
+ "typescript": "^5.8.0"
33
+ },
34
+ "publishConfig": {
35
+ "access": "public"
36
+ }
37
+ }