-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.1 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
{
"name": "@paulmillr/trusted-setups",
"description": "Easily access KZG / ETH trusted setups in JS",
"version": "0.1.2",
"main": "index.js",
"scripts": {
"build": "node build.mjs",
"test": "node test.mjs"
},
"author": "Paul Miller (https://paulmillr.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/paulmillr/trusted-setups.git"
},
"license": "MIT",
"files": [
"index.js",
"index.d.ts",
"esm/index.js",
"esm/index.d.ts",
"fast.js",
"fast.d.ts",
"esm/fast.js",
"esm/fast.d.ts",
"trusted_setup.json",
"esm/package.json"
],
"exports": {
".": {
"import": "./esm/index.js",
"require": "./index.js"
},
"./fast.js": {
"import": "./esm/fast.js",
"require": "./fast.js"
}
},
"devDependencies": {
"@noble/curves": "1.6.0",
"@noble/hashes": "1.5.0",
"c-kzg": "4.0.1",
"kzg-wasm": "0.4.0",
"micro-eth-signer": "0.11.0",
"micro-should": "0.4.0"
},
"sideEffects": false,
"keywords": [
"ethereum",
"eth",
"kzg",
"sign",
"trusted setup"
]
}