-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.84 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.84 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
74
75
76
77
78
79
80
81
82
{
"name": "@elizaos-plugins/plugin-executor",
"version": "0.1.0",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist"
],
"dependencies": {
"@elizaos/core": "workspace:*",
"@ethersproject/bignumber": "^5.7.0",
"@t3rn/executor": "0.0.4",
"tsup": "8.3.5",
"viem": "2.22.2"
},
"devDependencies": {
"@types/node": "^22.10.5"
},
"scripts": {
"build": "tsup --format esm --dts",
"dev": "tsup --format esm --dts --watch",
"test": "vitest run"
},
"peerDependencies": {
"whatwg-url": "7.1.0"
},
"publishConfig": {
"access": "public"
},
"agentConfig": {
"pluginType": "elizaos:plugin:1.0.0",
"pluginParameters": {
"ENVIRONMENT": {
"type": "string",
"description": "Deployment environment (testnet, mainnet, devnet)"
},
"LOG_PRETTY": {
"type": "boolean",
"description": "Enable pretty logging output"
},
"LOG_LEVEL": {
"type": "string",
"description": "Enable logging output, e.g.: debug"
},
"APP_NAME": {
"type": "string",
"description": "Name of the application, e.g.: executor"
},
"PRIVATE_KEY_EXECUTOR": {
"type": "string",
"description": "Private key for the executor, starting with 0x"
},
"PRICER_URL": {
"type": "string",
"description": "URL for the pricer API"
},
"OPENAI_API_KEY": {
"type": "string",
"description": "API key for OpenAI integration"
},
"DISABLE_AI_EXECUTOR_AUTORUN": {
"type": "boolean",
"description": "Disable executor analysis (enable chat instead)"
},
"DISABLE_EXECUTOR_AUTORUN": {
"type": "boolean",
"description": "Mandatory flag to disable executor autorun"
}
}
}
}