mulmocast 2.1.35 → 2.1.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/types/type.d.ts +4 -1
- package/package.json +11 -8
package/lib/types/type.d.ts
CHANGED
|
@@ -148,8 +148,9 @@ export type MulmoViewerBeat = {
|
|
|
148
148
|
duration?: number;
|
|
149
149
|
startTime?: number;
|
|
150
150
|
endTime?: number;
|
|
151
|
+
importance?: number;
|
|
151
152
|
multiLinguals?: Record<string, string>;
|
|
152
|
-
audioSources?: Record<string, string>;
|
|
153
|
+
audioSources?: Record<string, string | undefined>;
|
|
153
154
|
imageSource?: string;
|
|
154
155
|
videoSource?: string;
|
|
155
156
|
videoWithAudioSource?: string;
|
|
@@ -159,5 +160,7 @@ export type MulmoViewerBeat = {
|
|
|
159
160
|
export type MulmoViewerData = {
|
|
160
161
|
beats: MulmoViewerBeat[];
|
|
161
162
|
bgmSource?: string;
|
|
163
|
+
bgmFile?: string;
|
|
162
164
|
title?: string;
|
|
165
|
+
lang?: string;
|
|
163
166
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mulmocast",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.36",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.node.js",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"preprocess": "npx tsx ./src/cli/bin.ts preprocess",
|
|
45
45
|
"pdf": "npx tsx ./src/cli/bin.ts pdf",
|
|
46
46
|
"test": "rm -f scratchpad/test*.* && npx tsx ./src/audio.ts scripts/test/test.json && npx tsx ./src/images.ts scripts/test/test.json && npx tsx ./src/movie.ts scripts/test/test.json",
|
|
47
|
-
"ci_test": "NODE_ENV=test tsx --test
|
|
47
|
+
"ci_test": "cross-env NODE_ENV=test tsx --test --experimental-test-coverage ./test/*/test_*.ts",
|
|
48
48
|
"lint": "eslint src test",
|
|
49
49
|
"build": "tsc",
|
|
50
50
|
"build_test": "tsc && git checkout -- lib/*",
|
|
@@ -76,14 +76,14 @@
|
|
|
76
76
|
"homepage": "https://github.com/receptron/mulmocast-cli#readme",
|
|
77
77
|
"dependencies": {
|
|
78
78
|
"@google-cloud/text-to-speech": "^6.4.0",
|
|
79
|
-
"@google/genai": "^1.
|
|
79
|
+
"@google/genai": "^1.40.0",
|
|
80
80
|
"@graphai/anthropic_agent": "^2.0.12",
|
|
81
81
|
"@graphai/browserless_agent": "^2.0.1",
|
|
82
82
|
"@graphai/gemini_agent": "^2.0.5",
|
|
83
83
|
"@graphai/groq_agent": "^2.0.2",
|
|
84
84
|
"@graphai/input_agents": "^1.0.2",
|
|
85
85
|
"@graphai/openai_agent": "^2.0.9",
|
|
86
|
-
"@graphai/stream_agent_filter": "^2.0.
|
|
86
|
+
"@graphai/stream_agent_filter": "^2.0.3",
|
|
87
87
|
"@graphai/vanilla": "^2.0.12",
|
|
88
88
|
"@graphai/vanilla_node_agents": "^2.0.4",
|
|
89
89
|
"@inquirer/input": "^5.0.4",
|
|
@@ -93,29 +93,32 @@
|
|
|
93
93
|
"@tavily/core": "^0.5.11",
|
|
94
94
|
"archiver": "^7.0.1",
|
|
95
95
|
"clipboardy": "^5.2.1",
|
|
96
|
-
"dotenv": "^17.2.
|
|
96
|
+
"dotenv": "^17.2.4",
|
|
97
97
|
"fluent-ffmpeg": "^2.1.3",
|
|
98
98
|
"graphai": "^2.0.16",
|
|
99
99
|
"jsdom": "^28.0.0",
|
|
100
100
|
"marked": "^17.0.1",
|
|
101
101
|
"mulmocast-vision": "^1.0.8",
|
|
102
|
-
"ora": "^9.
|
|
103
|
-
"puppeteer": "^24.
|
|
102
|
+
"ora": "^9.3.0",
|
|
103
|
+
"puppeteer": "^24.37.2",
|
|
104
104
|
"replicate": "^1.4.0",
|
|
105
105
|
"yaml": "^2.8.2",
|
|
106
106
|
"yargs": "^18.0.0",
|
|
107
107
|
"zod": "^4.3.6"
|
|
108
108
|
},
|
|
109
109
|
"devDependencies": {
|
|
110
|
+
"@eslint/js": "^10.0.1",
|
|
110
111
|
"@receptron/test_utils": "^2.0.3",
|
|
111
112
|
"@types/archiver": "^7.0.0",
|
|
112
113
|
"@types/fluent-ffmpeg": "^2.1.28",
|
|
113
114
|
"@types/jsdom": "^27.0.0",
|
|
114
115
|
"@types/yargs": "^17.0.35",
|
|
115
|
-
"
|
|
116
|
+
"cross-env": "^10.1.0",
|
|
117
|
+
"eslint": "^10.0.0",
|
|
116
118
|
"eslint-config-prettier": "^10.1.8",
|
|
117
119
|
"eslint-plugin-prettier": "^5.5.5",
|
|
118
120
|
"eslint-plugin-sonarjs": "^3.0.6",
|
|
121
|
+
"globals": "^17.3.0",
|
|
119
122
|
"prettier": "^3.8.1",
|
|
120
123
|
"tsx": "^4.21.0",
|
|
121
124
|
"typescript": "^5.9.3",
|