-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.88 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
{
"name": "hak-layerzero-plugin",
"version": "1.0.1",
"description": "LayerZero omnichain interoperability plugin for the Hedera Agent Kit — enables AI agents to send cross-chain messages and query fees between Hedera and 150+ EVM chains",
"type": "module",
"author": "Juanma Gomez",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jmgomezl/hak-layerzero-plugin.git"
},
"homepage": "https://github.com/jmgomezl/hak-layerzero-plugin#readme",
"bugs": {
"url": "https://github.com/jmgomezl/hak-layerzero-plugin/issues"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": ["dist", "README.md", "LICENSE"],
"keywords": [
"hedera",
"layerzero",
"cross-chain",
"omnichain",
"bridge",
"agent-kit",
"defi",
"plugin",
"hbar",
"evm",
"interoperability"
],
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check src tests",
"format": "biome format --write src tests",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"@hashgraph/hedera-agent-kit": "^4.0.0",
"@hiero-ledger/sdk": "^2.84.0"
},
"dependencies": {
"@layerzerolabs/lz-definitions": "^3.1.0",
"@layerzerolabs/lz-v2-utilities": "^3.0.0",
"ethers": "^6.13.0",
"long": "^5.2.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@hashgraph/hedera-agent-kit": "^4.0.0",
"@hiero-ledger/sdk": "^2.84.0",
"@biomejs/biome": "^1.9.0",
"@types/long": "^5.0.0",
"@types/node": "^22.0.0",
"tsup": "^8.3.0",
"typescript": "^5.6.0",
"vitest": "^2.1.0"
}
}