-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 866 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 866 Bytes
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
{
"name": "@elizaos/plugin-mpc-wallet",
"version": "1.0.0",
"description": "ElizaOS plugin for MPC Agent Wallet",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsup src/index.ts --format esm --dts",
"dev": "tsup src/index.ts --format esm --dts --watch",
"lint": "prettier --write ./src",
"test": "bun test"
},
"dependencies": {
"@elizaos/core": "^2.0.0-alpha.2",
"@mpc-wallet/sdk": "latest",
"viem": "^2.44.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^22.10.0",
"bun": "^1.2.15",
"prettier": "^3.0.0",
"tsup": "8.3.5",
"typescript": "^5.7.0"
},
"peerDependencies": {
"@elizaos/core": ">=2.0.0-alpha"
}
}