-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1 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
{
"name": "@elizaos-plugins/plugin-quai",
"version": "0.1.9",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"dependencies": {
"@avnu/avnu-sdk": "^2.1.1",
"@elizaos/core": "^0.25.9",
"@elizaos/plugin-trustdb": "^0.25.6-alpha.1",
"quais": "1.0.0-alpha.39",
"tsup": "^8.3.5",
"vitest": "^3.0.0"
},
"scripts": {
"build": "tsup --format esm --dts",
"test": "vitest",
"lint": "eslint --fix --cache ."
},
"peerDependencies": {
"whatwg-url": "7.1.0"
},
"agentConfig": {
"pluginType": "elizaos:client:1.0.0",
"pluginParameters": {
"QUAI_PRIVATE_KEY": {
"type": "string",
"description": "Your Quai network private key"
},
"QUAI_RPC_URL": {
"type": "string",
"description": "Quai network RPC endpoint (e.g. https://rpc.quai.network)"
}
}
}
}