-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.86 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@andypai/orb",
"version": "0.2.0",
"description": "Voice-driven code explorer for your terminal",
"homepage": "https://github.com/abpai/orb#readme",
"bugs": {
"url": "https://github.com/abpai/orb/issues"
},
"type": "module",
"bin": {
"orb": "./src/cli.ts"
},
"files": [
"assets/**/*",
"commands/**/*.md",
"prompts/**/*.md",
"src/**/*.ts",
"src/**/*.tsx",
"!src/**/*.test.ts",
"!src/**/*.test.tsx",
"!src/**/*.spec.ts",
"!src/**/*.spec.tsx",
"!src/**/__tests__/**",
"!src/**/__snapshots__/**"
],
"engines": {
"bun": ">=1.1.0"
},
"packageManager": "bun@1.3.12",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/abpai/orb.git"
},
"keywords": [
"ai",
"voice",
"tts",
"code-explorer",
"cli",
"terminal",
"openai",
"anthropic"
],
"author": "Andy Pai",
"license": "MIT",
"scripts": {
"dev": "bun --watch src/cli.ts",
"start": "bun src/cli.ts",
"format": "bunx prettier --write .",
"typecheck": "bunx tsc --noEmit",
"check": "bunx prettier --check . && bun run typecheck && bun run test",
"test": "bun test",
"scratch:check": "for f in scratch/0*.ts scratch/99-*.ts; do echo \"→ $f\" && bun run \"$f\" >/dev/null || { echo \"FAIL: $f\"; exit 1; }; done && echo 'all scratch scripts ran'"
},
"dependencies": {
"@clack/prompts": "^1.2.0",
"@ai-sdk/openai": "3.0.53",
"@anthropic-ai/claude-agent-sdk": "0.2.114",
"@inkjs/ui": "2.0.0",
"@iarna/toml": "^2.2.5",
"ai": "6.0.168",
"commander": "^14.0.3",
"ink": "7.0.1",
"react": "19.2.5",
"zod": "4.3.6"
},
"devDependencies": {
"@types/bun": "^1.3.12",
"@types/react": "19.2.14",
"ink-testing-library": "4.0.0",
"prettier": "^3.8.3",
"typescript": "^6.0.3"
}
}