-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.29 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.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
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
{
"name": "plugin-hedera",
"description": "ElizaOS plugin for Hedera blockchain",
"version": "3.0.0",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"packageType": "plugin",
"platform": "node",
"license": "MIT",
"author": "Hashgraph Team",
"keywords": [
"plugin",
"elizaos",
"hedera",
"hedera-agent-kit"
],
"repository": {
"type": "git",
"url": ""
},
"homepage": "https://elizaos.ai",
"bugs": {
"url": "https://github.com/elizaos-plugins/plugin-hedera/issues"
},
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist",
"README.md",
".npmignore",
".gitignore",
"package.json",
"tsup.config.ts"
],
"dependencies": {
"@elizaos/core": "1.7.0",
"@elizaos/plugin-bootstrap": "1.7.0",
"@elizaos/plugin-ollama": "1.2.4",
"@elizaos/plugin-openai": "1.6.0",
"@hashgraph/sdk": "2.68.0",
"hedera-agent-kit": "3.6.0",
"zod": "^3.24.4"
},
"devDependencies": {
"@elizaos/cli": "1.7.0",
"@elizaos/test-utils": "^1.7.0",
"@eslint/js": "^9.20.0",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"dotenv": "16.4.5",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"prettier": "3.5.3",
"tsup": "8.5.0",
"typescript": "5.8.2"
},
"scripts": {
"start": "elizaos start",
"dev": "elizaos dev",
"build": "tsc --noEmit && tsup",
"test": "bun test",
"format": "prettier --write ./src",
"prettify": "prettier --check .",
"prettify:fix": "prettier --write .",
"lint": "eslint . --ext .ts,.js,.mjs",
"lint:fix": "eslint . --ext .ts,.js,.mjs --fix"
},
"publishConfig": {
"access": "public"
},
"agentConfig": {
"pluginType": "elizaos:plugin:3.0.0",
"pluginParameters": {
"HEDERA_ACCOUNT_ID": {
"type": "string",
"description": "Id/address of Hedera account (ex. 0.X.XXXXXX)"
},
"HEDERA_PRIVATE_KEY": {
"type": "string",
"description": "Private key for Hedera account. Accepts ED25519 and ECDSA private keys both DER and HEX encoded"
}
}
}
}