-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.59 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@agentokratia/guardian-wallet",
"version": "0.1.0",
"description": "Guardian Wallet — CLI + MCP server for threshold signing. The key never exists.",
"license": "Apache-2.0",
"author": "Agentokratia <hello@agentokratia.com>",
"repository": {
"type": "git",
"url": "https://github.com/agentokratia/guardian-wallet.git",
"directory": "packages/wallet"
},
"homepage": "https://github.com/agentokratia/guardian-wallet",
"bugs": "https://github.com/agentokratia/guardian-wallet/issues",
"keywords": ["mcp", "threshold", "wallet", "mpc", "ethereum", "agent", "signing", "cli", "x402"],
"type": "module",
"bin": {
"guardian-wallet": "./dist/index.js",
"gw": "./dist/index.js"
},
"files": ["dist", "!dist/__tests__", "scripts"],
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"postinstall": "node scripts/postinstall.js || true",
"build": "tsc",
"dev": "tsx src/index.ts",
"lint": "biome check src/",
"test": "vitest run --passWithNoTests",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist"
},
"dependencies": {
"@agentokratia/guardian-core": "workspace:*",
"@agentokratia/guardian-schemes": "workspace:*",
"@agentokratia/guardian-signer": "workspace:*",
"@inquirer/prompts": "^8.2.1",
"@modelcontextprotocol/sdk": "^1.12.0",
"@noble/hashes": "^1.7.1",
"@scure/bip39": "^2.0.1",
"@x402/core": "^2.2.0",
"@x402/evm": "^2.2.0",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"ora": "^8.1.0",
"viem": "^2.21.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"tsx": "^4.19.0"
}
}