-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.17 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
{
"name": "@restake/ethereum-deposit",
"version": "0.1.4",
"description": "Library for generating Ethereum deposit data",
"main": "dist/index.cjs",
"module": "dist/index.js",
"files": [
"LICENSE",
"dist",
"src"
],
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"default": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"source": "./src/index.ts"
}
},
"engines": {
"node": ">=18.17.0"
},
"scripts": {
"lint": "eslint .",
"test": "mocha",
"coverage": "c8 mocha",
"build": "tsup"
},
"author": "Restake <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"c8": "^8.0.1",
"chai": "^4.3.7",
"eslint": "^8.47.0",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"tsup": "^7.1.0",
"typescript": "^5.1.6"
},
"dependencies": {
"@chainsafe/bls": "^7.1.2",
"@chainsafe/bls-keygen": "^0.4.0",
"@chainsafe/ssz": "^0.11.1"
}
}