-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 4.84 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 4.84 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "opencut",
"version": "0.1.0",
"description": "Open-source AI video production engine. Code-driven video editing with Whisper subtitles, React components, and Remotion rendering.",
"license": "MIT",
"author": "Federico De Ponte <depontefede@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/floomhq/opencut.git"
},
"bugs": {
"url": "https://github.com/floomhq/opencut/issues"
},
"homepage": "https://github.com/floomhq/opencut#readme",
"keywords": [
"video",
"remotion",
"typescript",
"video-production",
"automation",
"subtitles",
"cli",
"rendering"
],
"main": "dist/engine/index.js",
"types": "dist/engine/index.d.ts",
"files": [
"dist/",
"src/",
"bin/",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"engines": {
"node": ">=20.0.0"
},
"bin": {
"opencut-init": "./bin/opencut-init.js",
"opencut-validate": "./bin/opencut-validate.js",
"opencut-transcribe": "./bin/opencut-transcribe.js",
"opencut-render": "./bin/opencut-render.js"
},
"scripts": {
"preview": "npx remotion studio src/examples/openslides/index.ts",
"render": "timeout 10m npx remotion render src/examples/openslides/index.ts OpenSlidesDemo out/openslides-demo.mp4",
"render-preview": "timeout 5m npx remotion render src/examples/openslides/index.ts OpenSlidesDemoPreview out/openslides-preview.mp4",
"render-test": "timeout 5m npx remotion render src/examples/openslides/index.ts OpenSlidesDemoPreview --frames=0-149 out/openslides-test-5s.mp4",
"test-render": "timeout 5m npx remotion render src/examples/quickstart/index.ts QuickstartPreview --frames=0-149 out/quickstart-test-5s.mp4",
"quickstart:preview": "npx remotion studio src/examples/quickstart/index.ts",
"quickstart:render": "timeout 10m npx remotion render src/examples/quickstart/index.ts Quickstart out/quickstart.mp4",
"build": "tsc",
"prepublishOnly": "npm run build",
"typecheck": "tsc --noEmit",
"test": "node --require ts-node/register --test src/engine/__tests__/*.test.ts src/cli/__tests__/*.test.ts src/workflow/__tests__/*.test.ts",
"test:coverage": "c8 npm test",
"docs:generate": "typedoc",
"docs:serve": "npx serve docs/api",
"ai-basics:preview": "npx remotion studio src/examples/ai-engineer-basics/index.ts",
"ai-basics:render": "timeout 30m npx remotion render src/examples/ai-engineer-basics/index.ts AiEngineerBasics out/ai-engineer-basics.mp4",
"ai-basics:preview-render": "timeout 5m npx remotion render src/examples/ai-engineer-basics/index.ts AiEngineerBasicsPreview out/ai-engineer-basics-preview.mp4",
"ai-basics:test": "timeout 5m npx remotion render src/examples/ai-engineer-basics/index.ts AiEngineerBasicsPreview --frames=0-149 out/ai-engineer-basics-test-5s.mp4",
"floom:preview": "npx remotion studio src/examples/floom-launch/index.ts",
"floom:render": "timeout 10m npx remotion render src/examples/floom-launch/index.ts FloomLaunch out/floom-launch.mp4",
"floom:test": "timeout 5m npx remotion render src/examples/floom-launch/index.ts FloomLaunch --frames=0-149 out/floom-launch-test-5s.mp4",
"hyperniche:preview": "npx remotion studio src/examples/hyperniche-launch/index.ts",
"hyperniche:render": "timeout 10m npx remotion render src/examples/hyperniche-launch/index.ts HypernicheLaunch out/hyperniche-launch.mp4",
"hyperniche:test": "timeout 5m npx remotion render src/examples/hyperniche-launch/index.ts HypernicheLaunch --frames=0-149 out/hyperniche-launch-test-5s.mp4",
"opendraft:preview": "npx remotion studio src/examples/opendraft-research/index.ts",
"opendraft:render": "timeout 10m npx remotion render src/examples/opendraft-research/index.ts OpendraftResearch out/opendraft-research.mp4",
"opendraft:test": "timeout 5m npx remotion render src/examples/opendraft-research/index.ts OpendraftResearch --frames=0-149 out/opendraft-research-test-5s.mp4",
"api:dev": "node --require ts-node/register src/api/server.ts",
"api:start": "node dist/api/server.js"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@remotion/bundler": "^4.0.454",
"@remotion/cli": "^4.0.454",
"@remotion/renderer": "^4.0.454",
"axios": "^1.15.0",
"express": "^5.2.1",
"multer": "^2.1.1",
"react": "19.1.0",
"react-dom": "19.1.0",
"remotion": "^4.0.454",
"ts-node": "^10.9.2",
"uuid": "^14.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/express": "^5.0.6",
"@types/js-yaml": "^4.0.9",
"@types/multer": "^2.1.0",
"@types/react": "19.1.1",
"@types/react-dom": "19.1.3",
"@types/uuid": "^10.0.0",
"c8": "^11.0.0",
"eslint": "^10.2.1",
"eslint-plugin-security": "^4.0.0",
"js-yaml": "^4.1.1",
"prettier": "^3.8.3",
"typedoc": "^0.28.19",
"typescript": "5.8.3",
"typescript-eslint": "^8.59.1"
}
}