-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 869 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 869 Bytes
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
{
"name": "orkas-video-studio",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "Drive video composition, generation, and editing from your coding agent (Claude Code / Codex).",
"license": "MIT",
"packageManager": "pnpm@10.28.2",
"engines": {
"node": ">=22"
},
"scripts": {
"benchmark": "pnpm --filter @orkas/video-studio-core build && node scripts/benchmark-core.mjs",
"build": "pnpm -r run build",
"test": "vitest run",
"test:video": "node scripts/test-video.mjs",
"test:video:e2e": "node scripts/test-video.mjs --e2e",
"test:watch": "vitest",
"typecheck": "pnpm -r run typecheck",
"verify": "pnpm build && pnpm typecheck && pnpm test && pnpm benchmark && pnpm test:video"
},
"devDependencies": {
"@types/node": "^22.10.0",
"typescript": "^5.7.0",
"vitest": "^2.1.0"
}
}