@hasna/mcps 0.0.4 → 0.0.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/bin/index.js CHANGED
@@ -8215,7 +8215,7 @@ var require_formats = __commonJS((exports) => {
8215
8215
  }
8216
8216
  var TIME = /^(\d\d):(\d\d):(\d\d(?:\.\d+)?)(z|([+-])(\d\d)(?::?(\d\d))?)?$/i;
8217
8217
  function getTime(strictTimeZone) {
8218
- return function time(str) {
8218
+ return function time3(str) {
8219
8219
  const matches = TIME.exec(str);
8220
8220
  if (!matches)
8221
8221
  return false;
@@ -9183,7 +9183,7 @@ var init_sources = __esm(() => {
9183
9183
  var require_package = __commonJS((exports, module) => {
9184
9184
  module.exports = {
9185
9185
  name: "@hasna/mcps",
9186
- version: "0.0.4",
9186
+ version: "0.0.5",
9187
9187
  description: "Meta-MCP registry & CLI \u2014 discover, manage, and proxy MCP servers",
9188
9188
  type: "module",
9189
9189
  main: "dist/index.js",
@@ -9206,7 +9206,7 @@ var require_package = __commonJS((exports, module) => {
9206
9206
  "README.md"
9207
9207
  ],
9208
9208
  scripts: {
9209
- build: "bun run build:dashboard && bun build ./src/cli/index.tsx --outdir ./bin --target bun --external ink --external react --external chalk && bun build ./src/mcp/index.ts --outfile ./bin/mcp.js --target bun && bun build ./src/index.ts --outdir ./dist --target bun && tsc --emitDeclarationOnly --declaration --outDir dist",
9209
+ build: `bun run build:dashboard && bun build ./src/cli/index.tsx --outdir ./bin --target bun --external ink --external react --external chalk && bun build ./src/mcp/index.ts --outfile ./bin/mcp.js --target bun && node -e "const fs=require('fs');const f='bin/mcp.js';const c=fs.readFileSync(f,'utf8');if(!c.startsWith('#!/'))fs.writeFileSync(f,'#!/usr/bin/env bun\\n'+c);fs.chmodSync(f,0o755);" && bun build ./src/index.ts --outdir ./dist --target bun && tsc --emitDeclarationOnly --declaration --outDir dist`,
9210
9210
  "build:dashboard": "cd dashboard && bun install && bun run build",
9211
9211
  dev: "bun run src/cli/index.tsx",
9212
9212
  "dev:mcp": "bun run src/mcp/index.ts",
package/bin/mcp.js CHANGED
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env bun
1
2
  // @bun
2
3
  var __create = Object.create;
3
4
  var __getProtoOf = Object.getPrototypeOf;
@@ -6287,7 +6288,7 @@ var require_formats = __commonJS((exports) => {
6287
6288
  }
6288
6289
  var TIME = /^(\d\d):(\d\d):(\d\d(?:\.\d+)?)(z|([+-])(\d\d)(?::?(\d\d))?)?$/i;
6289
6290
  function getTime(strictTimeZone) {
6290
- return function time(str) {
6291
+ return function time3(str) {
6291
6292
  const matches = TIME.exec(str);
6292
6293
  if (!matches)
6293
6294
  return false;
package/dist/index.js CHANGED
@@ -6375,7 +6375,7 @@ var require_formats = __commonJS((exports) => {
6375
6375
  }
6376
6376
  var TIME = /^(\d\d):(\d\d):(\d\d(?:\.\d+)?)(z|([+-])(\d\d)(?::?(\d\d))?)?$/i;
6377
6377
  function getTime(strictTimeZone) {
6378
- return function time(str) {
6378
+ return function time3(str) {
6379
6379
  const matches = TIME.exec(str);
6380
6380
  if (!matches)
6381
6381
  return false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hasna/mcps",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "description": "Meta-MCP registry & CLI — discover, manage, and proxy MCP servers",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -23,7 +23,7 @@
23
23
  "README.md"
24
24
  ],
25
25
  "scripts": {
26
- "build": "bun run build:dashboard && bun build ./src/cli/index.tsx --outdir ./bin --target bun --external ink --external react --external chalk && bun build ./src/mcp/index.ts --outfile ./bin/mcp.js --target bun && bun build ./src/index.ts --outdir ./dist --target bun && tsc --emitDeclarationOnly --declaration --outDir dist",
26
+ "build": "bun run build:dashboard && bun build ./src/cli/index.tsx --outdir ./bin --target bun --external ink --external react --external chalk && bun build ./src/mcp/index.ts --outfile ./bin/mcp.js --target bun && node -e \"const fs=require('fs');const f='bin/mcp.js';const c=fs.readFileSync(f,'utf8');if(!c.startsWith('#!/'))fs.writeFileSync(f,'#!/usr/bin/env bun\\n'+c);fs.chmodSync(f,0o755);\" && bun build ./src/index.ts --outdir ./dist --target bun && tsc --emitDeclarationOnly --declaration --outDir dist",
27
27
  "build:dashboard": "cd dashboard && bun install && bun run build",
28
28
  "dev": "bun run src/cli/index.tsx",
29
29
  "dev:mcp": "bun run src/mcp/index.ts",