-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 2.97 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 2.97 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "plugin-undesirables",
"version": "2.5.0",
"description": "ElizaOS plugin — Personality-as-Code for AI agents. 16 live-data skills powered by DeFiLlama + Etherscan + Oracle API (370K+ TCG products). 9 actions, zero-config demo soul. NFT holders get unique Big Five psychology profiles with persistent memory. Not financial advice.",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"images",
"assets",
"plugin.json",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"clean": "rm -rf dist",
"test": "vitest run"
},
"keywords": [
"elizaos",
"elizaos-plugin",
"elizaos-plugins",
"eliza",
"ai-agents",
"ai-personality",
"agent-personality",
"autonomous-agents",
"personality",
"soul",
"nft",
"ethereum",
"market-data",
"live-pricing",
"trading-cards",
"tcg",
"pokemon",
"oracle-api",
"x402",
"monte-carlo",
"ai-grading",
"mcp",
"base",
"usdc",
"content-creation",
"business-automation",
"market-intelligence"
],
"author": "The Undesirables LLC (sailorpepe)",
"license": "BUSL-1.1",
"repository": {
"type": "git",
"url": "https://github.com/sailorpepe/plugin-undesirables"
},
"homepage": "https://the-undesirables.com",
"bugs": {
"url": "https://github.com/sailorpepe/plugin-undesirables/issues"
},
"funding": {
"type": "individual",
"url": "https://the-undesirables.com"
},
"publishConfig": {
"access": "public"
},
"agentConfig": {
"pluginType": "elizaos:plugin:1.0.0",
"pluginParameters": {
"UNDESIRABLES_WORKSPACE": {
"type": "string",
"description": "Path to an Undesirables soul workspace directory. Optional — a demo soul loads automatically if not set.",
"required": false,
"sensitive": false
},
"OLLAMA_BASE_URL": {
"type": "string",
"description": "Ollama endpoint URL for local LLM inference (default: http://localhost:11434)",
"required": false,
"default": "http://localhost:11434",
"sensitive": false
}
}
},
"elizaos": {
"plugin": {
"capabilities": [
"personality",
"market-data",
"market-intelligence",
"oracle",
"market-analysis",
"business-automation",
"content-creation",
"risk-assessment",
"trading"
]
}
},
"peerDependencies": {
"@elizaos/core": ">=1.0.0"
},
"devDependencies": {
"@elizaos/core": "2.0.0-alpha.77",
"@types/js-yaml": "^4.0.9",
"js-yaml": "^4.1.0",
"tsup": "^8.5.1",
"typescript": "^5.4.0",
"vitest": "^3.0.0"
},
"dependencies": {
"js-yaml": "^4.1.0"
}
}