-
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.74 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.74 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": "@sendo-labs/plugin-cryptoscore",
"description": "CryptoScore plugin for ElizaOS - provides token gauges and fundamental analysis",
"version": "1.2.0",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sendo-labs/plugin-cryptoscore.git"
},
"files": [
"dist"
],
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"dependencies": {
"@elizaos/core": "^1.6.3",
"fix-dts-default-cjs-exports": "^1.0.1"
},
"devDependencies": {
"@biomejs/biome": "^2.2.5",
"@elizaos/cli": "^1.6.3",
"@types/node": "^24.7.0",
"prettier": "3.5.3",
"tsup": "8.5.0",
"typescript": "5.9.3"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "rm -rf dist .turbo node_modules tsconfig.tsbuildinfo",
"lint": "biome lint --write .",
"format": "biome format --write .",
"format:check": "prettier --check ./src",
"check": "biome check --write .",
"test": "elizaos test"
},
"platform": "universal",
"agentConfig": {
"pluginType": "elizaos:plugin:1.0.0",
"pluginParameters": {
"CRYPTOSCORE_API_KEY": {
"type": "string",
"description": "CryptoScore API key for accessing token gauges and analysis",
"sensitive": true,
"required": true
},
"CRYPTOSCORE_API_URL": {
"type": "string",
"description": "CryptoScore API base URL",
"sensitive": false,
"required": true
}
}
}
}