@hasna/wallets 0.1.6 → 0.1.7
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/dist/mcp/index.js +2 -1
- package/package.json +4 -3
package/dist/mcp/index.js
CHANGED
|
@@ -45,7 +45,8 @@ var require_package = __commonJS((exports, module) => {
|
|
|
45
45
|
typecheck: "tsc --noEmit",
|
|
46
46
|
test: "bun test",
|
|
47
47
|
"dev:cli": "bun run src/cli/index.ts",
|
|
48
|
-
"dev:mcp": "bun run src/mcp/index.ts"
|
|
48
|
+
"dev:mcp": "bun run src/mcp/index.ts",
|
|
49
|
+
postinstall: "mkdir -p $HOME/.hasna/wallets 2>/dev/null || true"
|
|
49
50
|
},
|
|
50
51
|
keywords: [
|
|
51
52
|
"wallets",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hasna/wallets",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "Universal wallet management for AI agents - CLI + MCP server with multi-provider support",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -25,7 +25,8 @@
|
|
|
25
25
|
"typecheck": "tsc --noEmit",
|
|
26
26
|
"test": "bun test",
|
|
27
27
|
"dev:cli": "bun run src/cli/index.ts",
|
|
28
|
-
"dev:mcp": "bun run src/mcp/index.ts"
|
|
28
|
+
"dev:mcp": "bun run src/mcp/index.ts",
|
|
29
|
+
"postinstall": "mkdir -p $HOME/.hasna/wallets 2>/dev/null || true"
|
|
29
30
|
},
|
|
30
31
|
"keywords": [
|
|
31
32
|
"wallets",
|
|
@@ -70,4 +71,4 @@
|
|
|
70
71
|
"@types/bun": "^1.2.4",
|
|
71
72
|
"typescript": "^5.7.3"
|
|
72
73
|
}
|
|
73
|
-
}
|
|
74
|
+
}
|