-
Notifications
You must be signed in to change notification settings - Fork 302
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.26 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.26 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
49
50
51
52
53
54
55
{
"name": "@bitgo/secp256k1",
"version": "1.7.0",
"description": "Low-level cryptographic methods used in BitGo packages for the secp256k1 curve",
"main": "./dist/src/index.js",
"engines": {
"node": ">=20 <23",
"npm": ">=3.10.10"
},
"keywords": [
"bitgo",
"ecc",
"bip32",
"musig",
"musig2"
],
"scripts": {
"prepare": "npm run build",
"build": "yarn tsc --build --incremental --verbose .",
"unit-test": "mocha --recursive test",
"lint": "eslint --quiet .",
"fmt": "prettier --write '{src,test}/**/*.{ts,js}'",
"precommit": "yarn lint-staged"
},
"repository": {
"type": "git",
"url": "https://github.com/BitGo/BitGoJS.git",
"directory": "modules/crypto"
},
"files": [
"dist/src"
],
"dependencies": {
"@brandonblack/musig": "^0.0.1-alpha.0",
"@noble/secp256k1": "1.6.3",
"bip32": "^3.0.1",
"create-hash": "^1.2.0",
"create-hmac": "^1.1.7",
"ecpair": "npm:@bitgo/ecpair@2.1.0-rc.0"
},
"devDependencies": {
"@types/node": "^22.15.29"
},
"lint-staged": {
"*.{js,ts}": [
"yarn prettier --write",
"yarn eslint --fix"
]
},
"publishConfig": {
"access": "public"
},
"author": "BitGo SDK Team <sdkteam@bitgo.com>",
"license": "MIT"
}