-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.86 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@elizaos/plugin-hyperbolic",
"version": "0.1.9",
"description": "HyperBolic Plugin for ElizaOS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "rm -rf dist",
"lint": "biome lint .",
"lint:fix": "biome check --apply .",
"format": "biome format .",
"format:fix": "biome format --write .",
"test": "vitest",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui"
},
"dependencies": {
"@elizaos/core": "workspace:*",
"axios": "^1.6.5",
"chalk": "^5.3.0",
"cli-table3": "^0.6.3",
"dotenv": "^16.4.1",
"ora": "^8.0.1",
"zod": "^3.22.4",
"ssh2": "^1.15.0",
"@coinbase/coinbase-sdk": "^0.15.0",
"viem": "^2.0.0",
"decimal.js": "^10.4.3"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/dotenv": "^8.2.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.5",
"@types/ssh2": "^1.11.18",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@vitest/coverage-v8": "^1.2.1",
"@vitest/ui": "^0.34.6",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vite-tsconfig-paths": "^4.2.2",
"vitest": "^3.0.0"
},
"peerDependencies": {
"@elizaos/core": "workspace:*"
},
"engines": {
"node": ">=18.0.0"
},
"agentConfig": {
"pluginType": "elizaos:client:1.0.0",
"pluginParameters": {
"HYPERBOLIC_ENV": {
"type": "string",
"minLength": 1,
"description": "HYPERBOLIC_ENV must be either 'production' or 'staging'."
},
"HYPERBOLIC_API_KEY": {
"type": "string",
"minLength": 1,
"description": "HYPERBOLIC_API_KEY is required"
},
"HYPERBOLIC_MAX_RETRIES": {
"type": "string",
"minLength": 1,
"description": "HYPERBOLIC_MAX_RETRIES must be a string that can be converted to a number."
},
"HYPERBOLIC_RETRY_DELAY": {
"type": "string",
"minLength": 1,
"description": "HYPERBOLIC_RETRY_DELAY must be a string that can be converted to a number."
},
"HYPERBOLIC_TIMEOUT": {
"type": "string",
"minLength": 1,
"description": "HYPERBOLIC_TIMEOUT must be a string that can be converted to a number."
},
"HYPERBOLIC_GRANULAR_LOG": {
"type": "string",
"minLength": 1,
"description": "HYPERBOLIC_GRANULAR_LOG must be a string that can be converted to a boolean."
},
"HYPERBOLIC_LOG_LEVEL": {
"type": "string",
"minLength": 1,
"description": "HYPERBOLIC_LOG_LEVEL must be one of 'error', 'warn', 'info', 'debug'."
},
"SSH_PRIVATE_KEY_PATH": {
"type": "string",
"minLength": 1,
"description": "SSH_PRIVATE_KEY_PATH is optional and must be a valid path to the SSH private key."
},
"RUNTIME_CHECK_MODE": {
"type": "string",
"minLength": 1,
"description": "RUNTIME_CHECK_MODE must be a string that can be converted to a boolean."
},
"HYPERBOLIC_SPASH": {
"type": "string",
"minLength": 1,
"description": "HYPERBOLIC_SPASH must be a string that can be converted to a boolean."
}
}
}
}