@bitgo-beta/sdk-lib-mpc 8.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintignore +5 -0
- package/CHANGELOG.md +4 -0
- package/LICENSE +191 -0
- package/README.md +0 -0
- package/dist/src/curves/baseCurve.d.ts +20 -0
- package/dist/src/curves/baseCurve.d.ts.map +1 -0
- package/dist/src/curves/baseCurve.js +6 -0
- package/dist/src/curves/index.d.ts +3 -0
- package/dist/src/curves/index.d.ts.map +1 -0
- package/dist/src/curves/index.js +3 -0
- package/dist/src/openssl/index.d.ts +2 -0
- package/dist/src/openssl/index.d.ts.map +1 -0
- package/dist/src/openssl/index.js +14 -0
- package/dist/src/openssl/openssl.d.ts +9 -0
- package/dist/src/openssl/openssl.d.ts.map +1 -0
- package/dist/src/openssl/openssl.js +45 -0
- package/dist/src/openssl/opensslbytes.d.ts +4 -0
- package/dist/src/openssl/opensslbytes.d.ts.map +1 -0
- package/dist/src/openssl/opensslbytes.js +20 -0
- package/dist/src/tss/ecdsa/index.d.ts +3 -0
- package/dist/src/tss/ecdsa/index.d.ts.map +1 -0
- package/dist/src/tss/ecdsa/index.js +25 -0
- package/dist/src/tss/ecdsa/rangeproof.d.ts +81 -0
- package/dist/src/tss/ecdsa/rangeproof.d.ts.map +1 -0
- package/dist/src/tss/ecdsa/rangeproof.js +412 -0
- package/dist/src/tss/ecdsa/types.d.ts +54 -0
- package/dist/src/tss/ecdsa/types.d.ts.map +1 -0
- package/dist/src/tss/ecdsa/types.js +3 -0
- package/dist/src/util.d.ts +6 -0
- package/dist/src/util.d.ts.map +1 -0
- package/dist/src/util.js +32 -0
- package/dist/tsconfig.tsbuildinfo +3560 -0
- package/package.json +51 -0
package/package.json
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@bitgo-beta/sdk-lib-mpc",
|
|
3
|
+
"version": "8.2.0",
|
|
4
|
+
"description": "library functions for BitGo's MPC solution",
|
|
5
|
+
"main": "./dist/src/index.js",
|
|
6
|
+
"types": "./dist/src/index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"test": "yarn unit-test",
|
|
9
|
+
"unit-test": "nyc -- mocha",
|
|
10
|
+
"build": "yarn tsc --build --incremental --verbose .",
|
|
11
|
+
"fmt": "prettier --write .",
|
|
12
|
+
"check-fmt": "prettier --check .",
|
|
13
|
+
"clean": "rm -r ./dist",
|
|
14
|
+
"lint": "eslint --quiet .",
|
|
15
|
+
"prepare": "npm run build"
|
|
16
|
+
},
|
|
17
|
+
"author": "BitGo SDK Team <sdkteam@bitgo.com>",
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "https://github.com/BitGo/BitGoJS.git",
|
|
22
|
+
"directory": "modules/sdk-lib-mpc"
|
|
23
|
+
},
|
|
24
|
+
"lint-staged": {
|
|
25
|
+
"*.{js,ts}": [
|
|
26
|
+
"yarn prettier --write",
|
|
27
|
+
"yarn eslint --fix"
|
|
28
|
+
]
|
|
29
|
+
},
|
|
30
|
+
"publishConfig": {
|
|
31
|
+
"access": "public"
|
|
32
|
+
},
|
|
33
|
+
"nyc": {
|
|
34
|
+
"extension": [
|
|
35
|
+
".ts"
|
|
36
|
+
]
|
|
37
|
+
},
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@types/keccak": "^3.0.1",
|
|
40
|
+
"@types/superagent": "4.1.15",
|
|
41
|
+
"@wasmer/wasi": "^1.2.2",
|
|
42
|
+
"bigint-crypto-utils": "3.1.4",
|
|
43
|
+
"bigint-mod-arith": "3.1.2",
|
|
44
|
+
"paillier-bigint": "3.3.0"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@types/lodash": "^4.14.151",
|
|
48
|
+
"nyc": "^15.0.0"
|
|
49
|
+
},
|
|
50
|
+
"gitHead": "da47c2ed7125c9c0e4a059ddede378f4628cd195"
|
|
51
|
+
}
|