@heventure/model-provider-x 0.2.4 → 0.2.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@heventure/model-provider-x",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "description": "TUI configurator and local API proxy for wiring custom model providers into OpenCode and Claude Code.",
5
5
  "private": false,
6
6
  "license": "MIT",
@@ -27,13 +27,14 @@
27
27
  "node": ">=20"
28
28
  },
29
29
  "scripts": {
30
- "build": "tsc -p tsconfig.build.json",
30
+ "build": "tsc -p tsconfig.build.json && cp -r src/data dist/data",
31
31
  "prepack": "npm run build",
32
32
  "start": "node dist/cli/index.js",
33
33
  "test": "vitest run",
34
34
  "test:watch": "vitest",
35
35
  "lint": "eslint . --ext .ts,.tsx",
36
- "format": "prettier --write ."
36
+ "format": "prettier --write .",
37
+ "update-models-dev": "npx tsx scripts/fetch-models-dev.ts"
37
38
  },
38
39
  "dependencies": {
39
40
  "jsonc-parser": "^3.3.1"
@@ -46,5 +47,8 @@
46
47
  "typescript": "^5.9.0",
47
48
  "typescript-eslint": "^8.0.0",
48
49
  "vitest": "^3.0.0"
50
+ },
51
+ "optionalDependencies": {
52
+ "@lmstudio/sdk": "^1.5.0"
49
53
  }
50
54
  }