mpd-llm-cli 0.1.33 → 0.1.35

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 (3) hide show
  1. package/bundle/api.js +2 -2
  2. package/bundle/gemini.js +1157 -17102
  3. package/package.json +3 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mpd-llm-cli",
3
- "version": "0.1.33",
3
+ "version": "0.1.35",
4
4
  "engines": {
5
5
  "node": ">=20.0.0"
6
6
  },
@@ -24,6 +24,7 @@
24
24
  "build:packages": "npm run build --workspaces",
25
25
  "build:sandbox": "node scripts/build_sandbox.js --skip-npm-install-build",
26
26
  "bundle": "npm run generate && node esbuild.config.js && node scripts/copy_bundle_assets.js",
27
+ "verify:bundle": "node scripts/verify-bundle.js",
27
28
  "dist": "node scripts/create-distribution.js",
28
29
  "dist:clean": "rm -rf dist && npm run dist",
29
30
  "release": "node scripts/release.js",
@@ -42,6 +43,7 @@
42
43
  "typecheck": "npm run typecheck --workspaces --if-present",
43
44
  "preflight": "npm run clean && npm ci && npm run format && npm run lint:ci && npm run build && npm run typecheck && npm run test:ci",
44
45
  "prepare": "npm run bundle",
46
+ "prepublishOnly": "npm run verify:bundle",
45
47
  "prepare:package": "node scripts/prepare-package.js",
46
48
  "release:version": "node scripts/version.js",
47
49
  "telemetry": "node scripts/telemetry.js",