mulmocast 2.6.23 → 2.7.1
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/README.md +24 -0
- package/lib/actions/bundle.js +2 -1
- package/lib/actions/pdf.js +4 -1
- package/lib/agents/image_genai_agent.js +5 -2
- package/lib/agents/image_openai_agent.js +2 -1
- package/lib/agents/image_replicate_agent.js +2 -1
- package/lib/agents/lipsync_replicate_agent.js +2 -1
- package/lib/agents/media_mock_agent.js +2 -1
- package/lib/agents/movie_genai_agent.js +17 -3
- package/lib/agents/movie_replicate_agent.js +2 -1
- package/lib/agents/sound_effect_replicate_agent.js +6 -2
- package/lib/agents/tts_elevenlabs_agent.js +4 -3
- package/lib/agents/tts_gemini_agent.js +4 -1
- package/lib/agents/tts_kotodama_agent.js +7 -3
- package/lib/cli/commands/audio/builder.d.ts +2 -14
- package/lib/cli/commands/audio/builder.js +2 -2
- package/lib/cli/commands/audio/handler.d.ts +2 -0
- package/lib/cli/commands/audio/handler.js +5 -1
- package/lib/cli/commands/image/builder.d.ts +2 -14
- package/lib/cli/commands/image/builder.js +2 -2
- package/lib/cli/commands/image/handler.d.ts +2 -0
- package/lib/cli/commands/image/handler.js +5 -1
- package/lib/cli/commands/movie/builder.d.ts +2 -14
- package/lib/cli/commands/movie/builder.js +2 -2
- package/lib/cli/commands/movie/handler.d.ts +2 -0
- package/lib/cli/commands/movie/handler.js +5 -1
- package/lib/cli/commands/pdf/builder.d.ts +2 -14
- package/lib/cli/commands/pdf/builder.js +2 -2
- package/lib/cli/commands/pdf/handler.d.ts +2 -0
- package/lib/cli/commands/pdf/handler.js +5 -1
- package/lib/cli/commands/translate/builder.d.ts +3 -15
- package/lib/cli/commands/translate/builder.js +2 -2
- package/lib/cli/commands/translate/handler.d.ts +2 -0
- package/lib/cli/commands/translate/handler.js +5 -1
- package/lib/cli/common.d.ts +5 -0
- package/lib/cli/common.js +13 -0
- package/lib/cli/helpers.d.ts +2 -0
- package/lib/cli/helpers.js +19 -0
- package/lib/index.common.d.ts +2 -0
- package/lib/index.common.js +2 -0
- package/lib/methods/mulmo_media_source.js +9 -13
- package/lib/methods/mulmo_presentation_style.d.ts +2 -0
- package/lib/methods/mulmo_presentation_style.js +9 -6
- package/lib/types/index.d.ts +1 -0
- package/lib/types/index.js +1 -0
- package/lib/types/provider2agent.d.ts +17 -0
- package/lib/types/provider2agent.js +79 -0
- package/lib/types/usage.d.ts +21 -0
- package/lib/utils/estimate_usage.d.ts +11 -0
- package/lib/utils/estimate_usage.js +332 -0
- package/lib/utils/estimate_usage_format.d.ts +2 -0
- package/lib/utils/estimate_usage_format.js +64 -0
- package/lib/utils/fetch.d.ts +28 -0
- package/lib/utils/fetch.js +52 -0
- package/lib/utils/file.js +2 -1
- package/lib/utils/image_plugins/bg_image_util.js +7 -20
- package/lib/utils/openai_client.js +6 -0
- package/lib/utils/replicate_usage.d.ts +4 -1
- package/lib/utils/replicate_usage.js +25 -5
- package/lib/utils/sdk_timeout.d.ts +3 -0
- package/lib/utils/sdk_timeout.js +7 -0
- package/lib/utils/zip.js +2 -2
- package/package.json +13 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mulmocast",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.7.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.node.js",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"resolutions": {
|
|
27
27
|
"minimatch": "^10.2.5",
|
|
28
28
|
"tar": "7.5.19",
|
|
29
|
-
"yauzl": "^3.
|
|
29
|
+
"yauzl": "^3.4.0"
|
|
30
30
|
},
|
|
31
31
|
"bin": {
|
|
32
32
|
"mulmo": "lib/cli/bin.js",
|
|
@@ -99,22 +99,23 @@
|
|
|
99
99
|
"@graphai/stream_agent_filter": "^2.0.3",
|
|
100
100
|
"@graphai/vanilla": "^2.0.12",
|
|
101
101
|
"@graphai/vanilla_node_agents": "^2.0.4",
|
|
102
|
-
"@inquirer/input": "^5.
|
|
103
|
-
"@inquirer/select": "^5.1
|
|
102
|
+
"@inquirer/input": "^5.1.2",
|
|
103
|
+
"@inquirer/select": "^5.2.1",
|
|
104
104
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
105
105
|
"@modernized/fluent-ffmpeg": "^1.0.1",
|
|
106
106
|
"@mozilla/readability": "^0.6.0",
|
|
107
107
|
"@mulmocast/deck": "^1.1.0",
|
|
108
|
-
"@tavily/core": "^0.7.
|
|
109
|
-
"archiver": "^
|
|
108
|
+
"@tavily/core": "^0.7.6",
|
|
109
|
+
"archiver": "^8.0.0",
|
|
110
110
|
"clipboardy": "^5.3.1",
|
|
111
111
|
"dotenv": "^17.4.2",
|
|
112
112
|
"graphai": "^2.0.18",
|
|
113
|
+
"js-tiktoken": "^1.0.21",
|
|
113
114
|
"jsdom": "^29.1.1",
|
|
114
115
|
"marked": "^18.0.5",
|
|
115
116
|
"mulmocast-vision": "^1.0.11",
|
|
116
117
|
"ora": "^9.4.1",
|
|
117
|
-
"puppeteer": "^25.
|
|
118
|
+
"puppeteer": "^25.3.0",
|
|
118
119
|
"replicate": "^1.4.0",
|
|
119
120
|
"yaml": "^2.9.0",
|
|
120
121
|
"yargs": "^18.0.0",
|
|
@@ -123,20 +124,20 @@
|
|
|
123
124
|
"devDependencies": {
|
|
124
125
|
"@eslint/js": "^10.0.1",
|
|
125
126
|
"@receptron/test_utils": "^2.0.3",
|
|
126
|
-
"@types/archiver": "^
|
|
127
|
+
"@types/archiver": "^8.0.0",
|
|
127
128
|
"@types/jsdom": "^28.0.3",
|
|
128
129
|
"@types/yargs": "^17.0.35",
|
|
129
130
|
"cross-env": "^10.1.0",
|
|
130
|
-
"eslint": "^10.
|
|
131
|
+
"eslint": "^10.7.0",
|
|
131
132
|
"eslint-config-prettier": "^10.1.8",
|
|
132
133
|
"eslint-plugin-import": "^2.32.0",
|
|
133
134
|
"eslint-plugin-prettier": "^5.5.6",
|
|
134
135
|
"eslint-plugin-sonarjs": "^4.1.0",
|
|
135
136
|
"globals": "^17.7.0",
|
|
136
|
-
"prettier": "^3.9.
|
|
137
|
-
"tsx": "^4.
|
|
137
|
+
"prettier": "^3.9.5",
|
|
138
|
+
"tsx": "^4.23.0",
|
|
138
139
|
"typescript": "6.0.3",
|
|
139
|
-
"typescript-eslint": "^8.
|
|
140
|
+
"typescript-eslint": "^8.63.0"
|
|
140
141
|
},
|
|
141
142
|
"engines": {
|
|
142
143
|
"node": ">=22.0.0"
|