mcp-file-uploader-cli 1.0.2 → 1.0.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 +1 -1
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env bun
1
+ #!/usr/bin/env node
2
2
  import { createRequire } from "node:module";
3
3
  var __create = Object.create;
4
4
  var __getProtoOf = Object.getPrototypeOf;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-file-uploader-cli",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "MCP Server for file uploading functionality",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -9,7 +9,7 @@
9
9
  "module": "index.ts",
10
10
  "type": "module",
11
11
  "scripts": {
12
- "build": "bun build ./index.ts --outdir ./dist --target node --banner '#!/usr/bin/env bun'",
12
+ "build": "bun build ./index.ts --outdir ./dist --target node --banner \"#!/usr/bin/env node\"",
13
13
  "start": "bun run dist/index.js",
14
14
  "dev": "bun run index.ts"
15
15
  },