-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 2.2 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
{
"name": "media-render",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"start": "bun run src/server.ts",
"test": "bun run tests/run.ts",
"test:render": "bun run tests/run.ts test-project-123",
"test:shorts": "bun run tests/run.ts shorts-tiktok-abc",
"test:slideshow": "bun run tests/run.ts slideshow-picsum-xyz",
"test:lyrics": "bun run tests/run.ts lyrics-karaoke-111",
"test:docker": "bun run tests/run.ts test-docker-project --docker",
"test:gaps": "bun run tests/run.ts gaps-handling-case",
"test:animations": "bun run tests/run.ts animated-keyframes-case",
"test:pip": "bun run tests/run.ts pip-facecam-case",
"test:effects": "bun run tests/run.ts vignette-effect-case",
"test:audio": "bun run tests/run.ts multi-track-audio-case",
"test:backdrop": "bun run tests/run.ts backdrop-blur-case",
"test:compat": "bun run tests/run.ts compat-params-case",
"test:element:video": "bun run tests/run.ts elements/video_element",
"test:element:image": "bun run tests/run.ts elements/image_element",
"test:element:audio": "bun run tests/run.ts elements/audio_element",
"test:element:text": "bun run tests/run.ts elements/text_element",
"test:element:sticker": "bun run tests/run.ts elements/sticker_element",
"test:element:graphic": "bun run tests/run.ts elements/graphic_element",
"test:element:effect": "bun run tests/run.ts elements/effect_element",
"test:track:muted": "bun run tests/run.ts tracks/muted_track",
"test:track:hidden": "bun run tests/run.ts tracks/hidden_track",
"test:track:main": "bun run tests/run.ts tracks/main_track",
"test:track:multi_video": "bun run tests/run.ts tracks/multi_video_tracks",
"test:track:multi_audio": "bun run tests/run.ts tracks/multi_audio_tracks",
"test:transition": "bun run tests/run.ts test-transition"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^26.1.0"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@mediabunny/server": "^1.50.6",
"dotenv": "^17.4.2",
"mediabunny": "^1.50.6",
"@napi-rs/canvas": "^0.1.65",
"node-av": "^6.1.1"
},
"trustedDependencies": [
"node-av"
]
}