@hasna/mcps 0.0.9 → 0.0.10
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 +3 -2
- package/package.json +5 -4
package/bin/index.js
CHANGED
|
@@ -18059,7 +18059,7 @@ var init_sources = __esm(() => {
|
|
|
18059
18059
|
var require_package = __commonJS((exports, module) => {
|
|
18060
18060
|
module.exports = {
|
|
18061
18061
|
name: "@hasna/mcps",
|
|
18062
|
-
version: "0.0.
|
|
18062
|
+
version: "0.0.10",
|
|
18063
18063
|
description: "Meta-MCP registry & CLI \u2014 discover, manage, and proxy MCP servers",
|
|
18064
18064
|
type: "module",
|
|
18065
18065
|
main: "dist/index.js",
|
|
@@ -18090,7 +18090,8 @@ var require_package = __commonJS((exports, module) => {
|
|
|
18090
18090
|
serve: "bun run src/cli/index.tsx serve",
|
|
18091
18091
|
test: "bun test",
|
|
18092
18092
|
typecheck: "tsc --noEmit",
|
|
18093
|
-
prepublishOnly: "bun run build"
|
|
18093
|
+
prepublishOnly: "bun run build",
|
|
18094
|
+
postinstall: "mkdir -p $HOME/.hasna/mcps/cache 2>/dev/null || true"
|
|
18094
18095
|
},
|
|
18095
18096
|
dependencies: {
|
|
18096
18097
|
"@hasna/cloud": "^0.1.0",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hasna/mcps",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "Meta-MCP registry & CLI
|
|
3
|
+
"version": "0.0.10",
|
|
4
|
+
"description": "Meta-MCP registry & CLI \u2014 discover, manage, and proxy MCP servers",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -31,7 +31,8 @@
|
|
|
31
31
|
"serve": "bun run src/cli/index.tsx serve",
|
|
32
32
|
"test": "bun test",
|
|
33
33
|
"typecheck": "tsc --noEmit",
|
|
34
|
-
"prepublishOnly": "bun run build"
|
|
34
|
+
"prepublishOnly": "bun run build",
|
|
35
|
+
"postinstall": "mkdir -p $HOME/.hasna/mcps/cache 2>/dev/null || true"
|
|
35
36
|
},
|
|
36
37
|
"dependencies": {
|
|
37
38
|
"@hasna/cloud": "^0.1.0",
|
|
@@ -58,4 +59,4 @@
|
|
|
58
59
|
"registry": "https://registry.npmjs.org",
|
|
59
60
|
"access": "public"
|
|
60
61
|
}
|
|
61
|
-
}
|
|
62
|
+
}
|