-
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.64 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.64 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": "@erdgecrawl/plugin-base-signals",
"description": "Real-time smart money signals, whale tracking, and token safety scoring on Base L2 for ElizaOS agents",
"version": "0.1.0",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"packageType": "plugin",
"platform": "node",
"license": "MIT",
"author": "erdGecrawl",
"keywords": [
"plugin",
"elizaos",
"base",
"defi",
"smart-money",
"whale-tracking",
"signals",
"trading",
"on-chain-analytics"
],
"repository": {
"type": "git",
"url": "https://github.com/erdGeclaw/plugin-base-signals"
},
"homepage": "https://ulol.li",
"bugs": {
"url": "https://github.com/erdGeclaw/plugin-base-signals/issues"
},
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist",
"README.md",
"package.json"
],
"dependencies": {
"@elizaos/core": "^1.7.0"
},
"devDependencies": {
"typescript": "^5.9.3",
"zod": "^4.3.5"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch"
},
"publishConfig": {
"access": "public"
},
"agentConfig": {
"pluginType": "elizaos:plugin:1.0.0",
"pluginParameters": {
"BASE_SIGNAL_API_KEY": {
"type": "string",
"description": "API key for Base Signal Feed. Get a free 7-day trial at https://ulol.li"
},
"BASE_SIGNAL_API_URL": {
"type": "string",
"description": "Signal feed API URL (default: https://api.ulol.li)"
}
}
}
}