forked from omni-network/omni
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.22 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
{
"name": "@omni-network/contracts",
"version": "0.2.0-alpha.5",
"license": "GPL-3.0-only",
"packageManager": "[email protected]",
"repository": "https://github.com/omni-network/omni/contracts",
"files": [
"src/**/*.sol",
"test/**/*.sol",
"test/**/*.ts",
"script/**/*.sol"
],
"scripts": {
"test": "pnpm test:gen && forge test",
"test:gen": "pnpm test:gen:xblocks && pnpm test:gen:xsubs",
"test:gen:xblocks": "forge script WriteTestXBlocks",
"test:gen:xsubs": "ts-node test/xchain/ts/script/genxsubs/main.ts"
},
"devDependencies": {
"@openzeppelin/merkle-tree": "^1.0.5",
"@types/node": "^20.11.7",
"ds-test": "https://github.com/dapphub/ds-test",
"ethereum-cryptography": "^2.1.3",
"forge-std": "https://github.com/foundry-rs/forge-std",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"viem": "^2.5.0"
},
"dependencies": {
"@nomad-xyz/excessively-safe-call": "github:nomad-xyz/ExcessivelySafeCall",
"@openzeppelin/contracts": "4.9.6",
"@openzeppelin/contracts-upgradeable": "4.9.6",
"eigenlayer-contracts": "github:Layr-Labs/eigenlayer-contracts",
"eigenlayer-middleware": "github:Layr-Labs/eigenlayer-middleware",
"solmate": "^6.2.0"
}
}