@beepflow/mcp 2026.5.4 → 2026.7.0

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/README.md +2 -2
  2. package/dist/index.js +14 -13
  3. package/package.json +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beepflow/mcp",
3
- "version": "2026.5.4",
3
+ "version": "2026.7.0",
4
4
  "type": "module",
5
5
  "engines": {
6
6
  "node": ">=24.6.0"
@@ -17,7 +17,7 @@
17
17
  "scripts": {
18
18
  "start:src": "node --experimental-strip-types ./src/index.ts",
19
19
  "test:src": "tsc -b ../shared/tsconfig.json && node --experimental-strip-types --test \"./src/**/*.test.ts\" \"../shared/replicated-state/**/*.test.ts\"",
20
- "build": "node --input-type=module -e \"import fs from 'node:fs'; fs.rmSync('dist', { recursive: true, force: true });\" && tsc -b ../shared/tsconfig.json && tsc -p tsconfig.json --noEmit && esbuild src/index.ts --bundle --platform=node --format=esm --target=node24 --minify --banner:js='#!/usr/bin/env node' --outfile=dist/index.js && node --input-type=module -e \"import fs from 'node:fs'; fs.chmodSync('dist/index.js', 0o755);\"",
20
+ "build": "node --input-type=module -e \"import fs from 'node:fs'; fs.rmSync('dist', { recursive: true, force: true });\" && tsc -b ../shared/tsconfig.json && tsc -p tsconfig.json --noEmit && esbuild src/index.ts --bundle --platform=node --format=esm --target=node24 --minify --banner:js='#!/usr/bin/env node\nconst require = (await import(\"node:module\")).createRequire(import.meta.url);' --outfile=dist/index.js && node --input-type=module -e \"import fs from 'node:fs'; fs.chmodSync('dist/index.js', 0o755);\"",
21
21
  "start": "node ./dist/index.js",
22
22
  "test": "yarn test:src && yarn build && node ./dist/index.js < /dev/null",
23
23
  "prepack": "yarn build"