@samanhappy/mcphub 0.0.2 → 0.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 (1) hide show
  1. package/package.json +3 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@samanhappy/mcphub",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "A hub server for mcp servers",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -86,7 +86,8 @@
86
86
  "frontend:build": "cd frontend && vite build",
87
87
  "frontend:preview": "cd frontend && vite preview",
88
88
  "dev": "concurrently \"pnpm backend:dev\" \"pnpm frontend:dev\"",
89
- "prepublishOnly": "npm run build && npm run frontend:build",
89
+ "prepublishOnly": "npm run build && npm run frontend:build && chmod +x ./bin/mcphub.js",
90
+ "postinstall": "chmod +x ./bin/mcphub.js",
90
91
  "version": "npm run format && git add -A src",
91
92
  "postversion": "git push && git push --tags"
92
93
  }