-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 783 Bytes
/
package.json
File metadata and controls
20 lines (20 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "animation-explainer",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "animation-explainer · 把技术原理做成剧场式动画 HTML 的 skill(含 TTS 旁白 + MP4 导出)",
"scripts": {
"audio": "node scripts/generate-audio.mjs",
"audio:vue": "node scripts/generate-audio.mjs examples/vue-internals",
"audio:browser": "node scripts/generate-audio.mjs examples/browser-request",
"video": "node scripts/export-video.mjs",
"video:vue": "node scripts/export-video.mjs examples/vue-internals",
"video:browser": "node scripts/export-video.mjs examples/browser-request",
"video:install": "npx playwright install chromium"
},
"dependencies": {
"msedge-tts": "^2.0.5",
"playwright": "^1.50.0"
}
}