-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.77 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
{
"name": "@madeonsol/plugin-madeonsol",
"version": "1.18.0",
"description": "ElizaOS plugin for MadeOnSol — Solana KOL intelligence and deployer analytics via x402 micropayments",
"repository": {
"type": "git",
"url": "https://github.com/madeonsol/plugin-madeonsol"
},
"homepage": "https://madeonsol.com/solana-api",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"prebuild": "node ../gen-version.mjs",
"build": "tsc",
"dev": "tsc --watch",
"preflight": "bash ../../scripts/preflight-publish.sh",
"prepublishOnly": "npm run preflight && npm run build"
},
"peerDependencies": {
"@elizaos/core": ">=1.0.0",
"@scure/base": ">=1.0.0",
"@solana/kit": ">=2.0.0",
"@x402/core": ">=0.1.0",
"@x402/fetch": ">=0.1.0",
"@x402/svm": ">=0.1.0"
},
"agentConfig": {
"pluginType": "elizaos:plugin:1.0.0",
"pluginParameters": {
"MADEONSOL_API_URL": {
"type": "string",
"description": "MadeOnSol API base URL",
"required": false,
"default": "https://madeonsol.com"
},
"SVM_PRIVATE_KEY": {
"type": "string",
"description": "Solana private key (base58) for automatic x402 USDC payments",
"required": true,
"sensitive": true
}
}
},
"keywords": [
"elizaos",
"eliza",
"plugin",
"elizaos-plugin",
"ai-agent",
"solana",
"kol",
"kol-tracker",
"x402",
"memecoin",
"memecoin-tracker",
"pumpfun",
"deployer-hunter",
"alpha",
"alpha-bot",
"smart-money",
"copy-trading",
"trading",
"madeonsol"
],
"license": "MIT",
"devDependencies": {
"@elizaos/core": "^2.0.0-alpha.77"
}
}