-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.32 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
{
"name": "lazy-frames",
"version": "0.6.3",
"description": "Agentic video generation with byte-stable local rendering, scene-linked narration, and reviewed capability plugins.",
"license": "MIT",
"author": "CosmicStack Labs",
"homepage": "https://lazy-frames.cosmicstack.ai/",
"repository": {
"type": "git",
"url": "git+https://github.com/cosmicstack-labs/lazy-frames.git"
},
"keywords": [
"video",
"generation",
"deterministic",
"local",
"ffmpeg",
"chrome",
"spec",
"agentic",
"motion-graphics",
"cinematic"
],
"type": "module",
"bin": {
"lazy": "packages/cli/dist/index.js"
},
"main": "packages/cli/dist/index.js",
"engines": {
"node": ">=20"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspace @lazy/engine && npm run build --workspace @lazy/renderer && npm run build --workspace @lazy/capture && npm run build --workspace @lazy/cli && npm run plugins:build",
"plugins:build": "node scripts/build-plugin-marketplace.mjs",
"verify:plugins": "npm run build && node scripts/test-plugins.mjs",
"verify:regressions": "npm run build && node scripts/test-alignment-progress.mjs && node scripts/test-providers.mjs && node scripts/test-preview-audio.mjs",
"prepack": "npm run build",
"verify:demo": "node scripts/verify-demo.mjs",
"verify:cinematic": "node scripts/verify-cinematic.mjs"
},
"dependencies": {
"commander": "^13.0.0",
"puppeteer-core": "^24.0.0",
"zod": "^3.25.0"
},
"devDependencies": {
"typescript": "^5.9.3"
},
"files": [
"packages/engine/dist/",
"packages/engine/assets/",
"packages/engine/package.json",
"packages/renderer/dist/",
"packages/renderer/package.json",
"packages/capture/dist/",
"packages/capture/package.json",
"packages/cli/dist/",
"packages/cli/package.json",
"packages/gen-sidecar/gen_sidecar/__init__.py",
"packages/gen-sidecar/gen_sidecar/__main__.py",
"packages/gen-sidecar/gen_sidecar/music.py",
"packages/gen-sidecar/gen_sidecar/tts.py",
"packages/gen-sidecar/gen_sidecar/sfx.py",
"packages/gen-sidecar/gen_sidecar/doctor.py",
"plugins/",
"docs/plugins/",
"skill/",
"scripts/build-plugin-marketplace.mjs",
"scripts/test-plugins.mjs",
"PLAN.md",
"README.md"
]
}