-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.04 KB
/
package.json
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
{
"name": "@elizaos-plugins/plugin-solana-v2",
"version": "0.1.9",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"@elizaos/plugin-tee": "workspace:*",
"@orca-so/whirlpools": "^1.0.2",
"@orca-so/whirlpools-core": "^1.0.2",
"@orca-so/whirlpools-client": "1.0.2",
"@solana-program/compute-budget": "^0.6.1",
"@solana-program/system": "^0.6.2",
"@solana-program/token-2022": "^0.3.1",
"@solana/codecs": "^2.0.0",
"@solana/web3.js": "^2.0.0",
"@types/bs58": "^4.0.4",
"bs58": "^6.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@types/node": "^22.8.7",
"tsup": "^8.3.5",
"vitest": "2.1.9"
},
"scripts": {
"build": "tsup --format esm --dts",
"dev": "tsup --format esm --dts --watch",
"lint": "biome check src/",
"lint:fix": "biome check --apply src/",
"format": "biome format src/",
"format:fix": "biome format --write src/"
},
"agentConfig": {
"pluginType": "elizaos:client:1.0.0",
"pluginParameters": {
"SOLANA_PRIVATE_KEY": {
"type": "string",
"minLength": 1,
"description": "The private key for your Solana wallet.",
"optional": false
},
"SOLANA_PUBLIC_KEY": {
"type": "string",
"minLength": 1,
"description": "The public key for your Solana wallet.",
"optional": false
},
"SOLANA_RPC_URL": {
"type": "string",
"minLength": 1,
"description": "The RPC URL for connecting to the Solana blockchain.",
"optional": false
},
"OPENAI_API_KEY": {
"type": "string",
"minLength": 1,
"description": "API key for OpenAI services.",
"optional": false
}
}
}
}