-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.02 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.02 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
{
"name": "@ensdomains/merkle-builder",
"version": "0.0.5",
"description": "Low-level Merkle-Patricia storage trie implementation",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"./dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"devDependencies": {
"@adraffy/blocksmith": "^0.1.57",
"@types/bun": "latest",
"ethers": "^6.15.0",
"tsup": "^8.5.1"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@adraffy/keccak": "^1.3.4"
},
"scripts": {
"fuzz": "while true; do bun test test/storage.test.ts; done",
"build": "tsup src/index.ts --dts --format esm,cjs --out-dir dist"
},
"license": "MIT",
"homepage": "https://github.com/ensdomains/merkle-builder#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ensdomains/merkle-builder.git"
},
"keywords": [
"Ethereum",
"Solidity",
"Merkle",
"Trie",
"eth_getProof",
"eth_getStorageAt"
]
}