modality-ai 0.1.2 → 0.1.3

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.
Files changed (2) hide show
  1. package/dist/index.js +8 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -126585,8 +126585,14 @@ function jsonSchemaToZod(schema2) {
126585
126585
  }
126586
126586
  }
126587
126587
  var setupStdioToHttpTools = async (mcpServer, options) => {
126588
- const { command = "bunx", args: optionArgs, env: optionEnv, pkg, timeout: timeout6 = 120000 } = options || {};
126589
- const args2 = optionArgs || (pkg ? [pkg] : []);
126588
+ const {
126589
+ command = "bunx",
126590
+ args: optionArgs = [],
126591
+ env: optionEnv,
126592
+ pkg,
126593
+ timeout: timeout6 = 120000
126594
+ } = options || {};
126595
+ const args2 = pkg ? [pkg, ...optionArgs] : optionArgs;
126590
126596
  const env = {
126591
126597
  ...Object.fromEntries(Object.entries(process.env).filter((entry) => entry[1] !== undefined)),
126592
126598
  ...optionEnv || {}
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.1.2",
2
+ "version": "0.1.3",
3
3
  "name": "modality-ai",
4
4
  "repository": {
5
5
  "type": "git",