-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.42 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.42 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
{
"name": "plugin-agentwallet",
"version": "1.0.0",
"description": "Non-custodial wallet for ElizaOS agents \u2014 EVM + Solana, x402 payments, 17-chain CCTP bridge, on-chain spend limits",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"images",
"README.md"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"lint": "eslint src/"
},
"keywords": [
"elizaos",
"eliza",
"plugin",
"wallet",
"solana",
"evm",
"base",
"x402",
"cctp",
"non-custodial",
"agent",
"payments",
"defi",
"crypto",
"bridge"
],
"author": "up2itnow0822",
"license": "MIT",
"dependencies": {
"agentwallet-sdk": "^5.1.1"
},
"devDependencies": {
"@elizaos/core": "^1.7.2",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"eslint": "^10.1.0",
"globals": "^17.4.0",
"typescript": "^5.0.0"
},
"agentConfig": {
"pluginType": "elizaos:plugin:1.0.0",
"pluginParameters": {}
},
"elizaos": {
"actions": [
"WALLET_BALANCE",
"SEND_PAYMENT",
"BRIDGE_USDC",
"SWAP_TOKEN",
"GET_SPEND_LIMITS"
],
"providers": [
"walletProvider"
],
"evaluators": []
},
"repository": {
"type": "git",
"url": "https://github.com/agentwallet-sdk/elizaos-plugin"
},
"homepage": "https://ai-agent-economy.com"
}