-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (50 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (50 loc) · 1.29 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
{
"name": "@elizaos-plugins/plugin-swc",
"version": "0.1.9",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"dependencies": {
"@elizaos/core": "workspace:^",
"@anthropic-ai/sdk": "^0.39.0",
"axios": "^1.6.7",
"tsup": "^8.3.5"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^20.11.24",
"@vitest/coverage-v8": "^1.2.2",
"vitest": "^1.2.2"
},
"scripts": {
"build": "tsup --format esm --dts",
"dev": "tsup --format esm --dts --watch",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"clean": "rm -rf dist",
"lint": "biome lint .",
"lint:fix": "biome check --apply .",
"format": "biome format .",
"format:fix": "biome format --write ."
},
"agentConfig": {
"pluginType": "elizaos:client:1.0.0",
"pluginParameters": {
"COINGECKO_API_KEY": {
"type": "string"
},
"COINGECKO_PRO_API_KEY": {
"type": "string",
"optional": true
},
"ANTHROPIC_API_KEY": {
"type": "string"
},
"ANTHROPIC_BASE_URL": {
"type": "string",
"optional": true
}
}
}
}