-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.03 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@deviykee/mcw",
"version": "1.2.0",
"description": "Multi-Chain CLI Wallet (MCW) & Agentic Framework for Humans and AI Agents (MCP)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mcw": "dist/index.js",
"mc-wallet": "dist/index.js",
"mc-twaf": "dist/index.js",
"wallet": "dist/index.js"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devIykee/mcw.git"
},
"bugs": {
"url": "https://github.com/devIykee/mcw/issues"
},
"homepage": "https://github.com/devIykee/mcw#readme",
"files": [
"dist",
"README.md",
"LICENSE",
"CONTRIBUTING.md",
"skills"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"dev": "tsx watch src/index.ts",
"cli": "tsx src/index.ts",
"mcp": "tsx src/index.ts mcp",
"start": "tsx src/index.ts",
"test": "tsx test/wallet.test.ts"
},
"keywords": [
"mcw",
"blockchain",
"wallet",
"cli",
"testnet",
"mainnet",
"bitcoin",
"ethereum",
"solana",
"tron",
"mcp",
"model-context-protocol",
"ai-agent"
],
"author": "deviykee <eokorie1911@gmail.com> (https://github.com/devIykee)",
"license": "CC-BY-4.0",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.5.0",
"@solana/web3.js": "^1.95.8",
"axios": "^1.7.9",
"bip32": "^4.0.0",
"bip39": "^3.1.0",
"bitcoinjs-lib": "^6.1.6",
"bs58": "^5.0.0",
"chalk": "^4.1.2",
"cli-table3": "^0.6.5",
"commander": "^12.1.0",
"dotenv": "^16.4.7",
"ecpair": "^2.1.0",
"ed25519-hd-key": "^1.3.0",
"ethers": "^6.13.4",
"inquirer": "^8.2.6",
"ora": "^5.4.1",
"tiny-secp256k1": "^2.2.3",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/inquirer": "^8.2.6",
"@types/node": "^22.10.1",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}