-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 2.05 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
{
"name": "vox",
"private": true,
"description": "Local-first Apple voice stack with embeddable Swift packages, Vox Companion, a Bun CLI, and TypeScript clients.",
"workspaces": [
"packages/*",
"site"
],
"packageManager": "bun@1.2.15",
"scripts": {
"dev": "bun run site:dev",
"build": "bun run --cwd packages/client build && bun run --cwd packages/cli build && bun run --cwd packages/web-client build && swift build --package-path swift",
"build:all": "bun run build && bun run site:build",
"app:build": "sh -c 'swift_build_path=\"app/.build-$(swift --version | shasum | cut -d \" \" -f 1)\"; swift build --package-path app --scratch-path \"$swift_build_path\"'",
"app:launch": "sh -c 'swift_build_path=\"app/.build-$(swift --version | shasum | cut -d \" \" -f 1)\"; VOX_SHOW_SETTINGS_ON_LAUNCH=1 swift run --package-path app --scratch-path \"$swift_build_path\" Vox --show-settings'",
"app:relaunch": "./scripts/app-relaunch.sh",
"app:link-dev": "./scripts/link-dev-app.sh",
"app:bundle": "./scripts/build-dmg.sh",
"site:dev": "bun run --cwd site dev",
"site:build": "bun run --cwd site build && bun run docs:build && cp -r docs-site/dist/. site/out/",
"docs:dev": "bun run --cwd docs-site dev",
"docs:build": "bun run --cwd docs-site build",
"site:lint": "bun run --cwd site lint",
"site:og": "bun run --cwd site og",
"docs:generate": "dewey generate",
"docs:audit": "dewey audit",
"docs:agent": "dewey agent",
"eval:annotation": "bun run scripts/annotation-eval.ts",
"tui": "bun run --cwd packages/tui index.tsx",
"example:tui": "INIT_CWD=\"$PWD\" bun run --cwd examples/transcribe-tui index.tsx",
"test": "bun test packages/client/test packages/cli/test packages/web-client/test && swift test --package-path swift",
"test:e2e": "swift build --package-path swift --product voxd --product voxbridge && VOX_E2E=1 bun test packages/client/test/transcribe-file.e2e.test.ts packages/web-client/test/live-session.e2e.test.ts"
},
"devDependencies": {
"@arach/dewey": "^0.3.4"
}
}