forked from borislav-itskov/schnorrkel.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 987 Bytes
/
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
{
"name": "@borislav.itskov/schnorrkel.js",
"version": "2.0.85",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=16.0.0, <20.0.0"
},
"files": [
"dist",
"package.json",
"README.md"
],
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch"
},
"author": "",
"license": "ISC",
"dependencies": {
"bigi": "^1.4.2",
"ecurve": "^1.0.6",
"ethers": "^5.7.2",
"secp256k1": "^5.0.0"
},
"devDependencies": {
"@types/ecurve": "^1.0.0",
"@types/elliptic": "^6.4.14",
"@types/node": "^20.14.2",
"@types/secp256k1": "^4.0.3",
"@vitest/coverage-c8": "^0.29.2",
"hardhat": "^2.14.0",
"solc": "0.8.19",
"typescript": "^4.9.5",
"vitest": "^0.29.2"
},
"repository": {
"type": "git",
"url": "https://github.com/borislav-itskov/schnorrkel.js"
}
}