-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.7 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
{
"name": "plugin-agentscoin",
"version": "0.1.0",
"description": "ElizaOS plugin: give your agent an AgentsCoin wallet \u2014 create wallet, mine AGENT, check balance, send.",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepublishOnly": "npm run build"
},
"keywords": [
"elizaos",
"elizaos-plugin",
"ai-agents",
"crypto",
"wallet",
"agentscoin",
"mcp",
"agentic-payments"
],
"license": "MIT",
"dependencies": {
"ethers": "^6.13.4"
},
"peerDependencies": {
"@elizaos/core": "*"
},
"optionalDependencies": {
"playwright": "^1.49.0"
},
"devDependencies": {
"@elizaos/core": "latest",
"@types/node": "^20.11.0",
"tsup": "^8.0.0",
"typescript": "^5.4.0"
},
"agentConfig": {
"pluginType": "elizaos:plugin:1.0.0",
"pluginParameters": {
"AGENTSCOIN_PRIVATE_KEY": {
"type": "string",
"description": "Private key of the agent's AgentsCoin wallet (optional; AGENTSCOIN_CREATE_WALLET can generate one)",
"required": false
},
"AGENTSCOIN_RPC": {
"type": "string",
"description": "AgentsCoin RPC URL",
"required": false,
"default": "https://rpc.agents-coin.com"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/axiosdevs/plugin-agentscoin.git"
},
"homepage": "https://agents-coin.com",
"bugs": {
"url": "https://github.com/axiosdevs/plugin-agentscoin/issues"
}
}