@bitgo/account-lib 2.19.0-rc.28 → 2.19.0-rc.30

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bitgo/account-lib",
3
- "version": "2.19.0-rc.28",
3
+ "version": "2.19.0-rc.30",
4
4
  "description": "BitGo's account library functions",
5
5
  "main": "./dist/src/index.js",
6
6
  "types": "./dist/src/index.d.ts",
@@ -20,7 +20,8 @@
20
20
  "lint": "eslint --quiet 'src/**/*.ts' 'test/**/*.ts'",
21
21
  "lint-fix": "eslint --fix 'src/**/*.ts' 'test/**/*.ts'",
22
22
  "prepublishOnly": "npm run compile",
23
- "prepare": "npm run gen-protobuf && npm run gen-protobufts && npm run hedera-gen-protobuf && npm run hedera-gen-protobufts && tsc && cp -r ./resources ./dist",
23
+ "prepare": "npm run gen-protobuf && npm run gen-protobufts && npm run hedera-gen-protobuf && npm run hedera-gen-protobufts && npm run build-ts && cp -r ./resources ./dist",
24
+ "build-ts": "tsc --build --incremental --verbose .",
24
25
  "unit-test": "nyc -- mocha",
25
26
  "test": "npm run unit-test",
26
27
  "unprettied": "grep -R -L --include '*.ts' --include '*.js' --include '*.json' '@prettier' src test"
@@ -30,7 +31,7 @@
30
31
  "url": "https://github.com/BitGo/BitGoJS.git",
31
32
  "directory": "modules/account-lib"
32
33
  },
33
- "author": "",
34
+ "author": "BitGo SDK Team <sdkteam@bitgo.com>",
34
35
  "license": "ISC",
35
36
  "engines": {
36
37
  "node": ">=14 <17"
@@ -38,8 +39,8 @@
38
39
  "dependencies": {
39
40
  "@bitgo/blake2b": "^3.0.2",
40
41
  "@bitgo/bls": "^0.1.0",
41
- "@bitgo/bls-dkg": "^1.0.2-rc.0",
42
- "@bitgo/statics": "^6.17.0-rc.19",
42
+ "@bitgo/bls-dkg": "^1.0.2-rc.1",
43
+ "@bitgo/statics": "^6.17.0-rc.21",
43
44
  "@celo/contractkit": "^1.2.4",
44
45
  "@ethereumjs/common": "^2.4.0",
45
46
  "@ethereumjs/tx": "^3.3.0",
@@ -126,5 +127,5 @@
126
127
  "publishConfig": {
127
128
  "access": "public"
128
129
  },
129
- "gitHead": "6630ac7a24f6eec18b36dbe15a1ce92948d4f50e"
130
+ "gitHead": "3fb94b31a2dbf627d9da3a7ab7fa3e710a03ac83"
130
131
  }
package/dist/package.json DELETED
@@ -1,130 +0,0 @@
1
- {
2
- "name": "@bitgo/account-lib",
3
- "version": "2.19.0-rc.28",
4
- "description": "BitGo's account library functions",
5
- "main": "./dist/src/index.js",
6
- "types": "./dist/src/index.d.ts",
7
- "scripts": {
8
- "webpack-dev": "cross-env NODE_ENV=development webpack",
9
- "webpack-prod": "cross-env NODE_ENV=production webpack",
10
- "build": "npm run prepare",
11
- "clean": "rm -rf dist/*",
12
- "compile": "npm run webpack-prod",
13
- "compile-dev": "npm run webpack-dev",
14
- "compile-test": "npm run webpack-dev",
15
- "coverage": "npm run gen-coverage && npm run upload-coverage",
16
- "gen-protobuf": "pbjs -t static-module -w commonjs -o ./resources/trx/protobuf/tron.js ./resources/trx/protobuf/Discover.proto ./resources/trx/protobuf/Contract.proto ./resources/trx/protobuf/tron.proto",
17
- "gen-protobufts": "pbts -o ./resources/trx/protobuf/tron.d.ts ./resources/trx/protobuf/tron.js",
18
- "hedera-gen-protobuf": "pbjs -t static-module -w commonjs -o ./resources/hbar/protobuf/hedera.js ./resources/hbar/protobuf/Timestamp.proto ./resources/hbar/protobuf/BasicTypes.proto ./resources/hbar/protobuf/Duration.proto ./resources/hbar/protobuf/CryptoCreate.proto ./resources/hbar/protobuf/CryptoTransfer.proto ./resources/hbar/protobuf/TransactionBody.proto ./resources/hbar/protobuf/Transaction.proto ./resources/hbar/protobuf/TransactionContents.proto",
19
- "hedera-gen-protobufts": "pbts -o ./resources/hbar/protobuf/hedera.d.ts ./resources/hbar/protobuf/hedera.js",
20
- "lint": "eslint --quiet 'src/**/*.ts' 'test/**/*.ts'",
21
- "lint-fix": "eslint --fix 'src/**/*.ts' 'test/**/*.ts'",
22
- "prepublishOnly": "npm run compile",
23
- "prepare": "npm run gen-protobuf && npm run gen-protobufts && npm run hedera-gen-protobuf && npm run hedera-gen-protobufts && tsc && cp -r ./resources ./dist",
24
- "unit-test": "nyc -- mocha",
25
- "test": "npm run unit-test",
26
- "unprettied": "grep -R -L --include '*.ts' --include '*.js' --include '*.json' '@prettier' src test"
27
- },
28
- "repository": {
29
- "type": "git",
30
- "url": "https://github.com/BitGo/BitGoJS.git",
31
- "directory": "modules/account-lib"
32
- },
33
- "author": "",
34
- "license": "ISC",
35
- "engines": {
36
- "node": ">=14 <17"
37
- },
38
- "dependencies": {
39
- "@bitgo/blake2b": "^3.0.2",
40
- "@bitgo/bls": "^0.1.0",
41
- "@bitgo/bls-dkg": "^1.0.2-rc.0",
42
- "@bitgo/statics": "^6.17.0-rc.19",
43
- "@celo/contractkit": "^1.2.4",
44
- "@ethereumjs/common": "^2.4.0",
45
- "@ethereumjs/tx": "^3.3.0",
46
- "@hashgraph/sdk": "~2.3.0",
47
- "@polkadot/api": "7.15.1",
48
- "@solana/spl-token": "0.1.8",
49
- "@solana/web3.js": "1.31.0",
50
- "@stablelib/hex": "^1.0.0",
51
- "@stablelib/sha384": "^1.0.0",
52
- "@stacks/transactions": "2.0.1",
53
- "@substrate/txwrapper-core": "1.5.9",
54
- "@substrate/txwrapper-polkadot": "1.5.9",
55
- "@taquito/local-forging": "6.3.5-beta.0",
56
- "@taquito/signer": "6.3.5-beta.0",
57
- "@types/lodash": "^4.14.151",
58
- "algosdk": "^1.14.0",
59
- "bignumber.js": "^9.0.0",
60
- "bip32": "^2.0.6",
61
- "bitcoinjs-lib": "npm:@bitgo/bitcoinjs-lib@6.1.0-rc.3",
62
- "bs58": "^4.0.1",
63
- "bs58check": "^2.1.2",
64
- "casper-js-sdk": "2.7.6",
65
- "create-hmac": "^1.1.7",
66
- "elliptic": "^6.5.2",
67
- "ethereumjs-abi": "^0.6.5",
68
- "ethereumjs-util": "6.2.1",
69
- "ethereumjs-utils-old": "npm:ethereumjs-util@5.2.0",
70
- "ethers": "^5.1.3",
71
- "hi-base32": "^0.5.1",
72
- "joi": "^17.4.0",
73
- "libsodium-wrappers": "^0.7.6",
74
- "libsodium-wrappers-sumo": "^0.7.9",
75
- "lodash": "^4.17.15",
76
- "long": "^4.0.0",
77
- "near-api-js": "^0.44.2",
78
- "noble-bls12-381": "0.7.2",
79
- "protobufjs": "^6.8.9",
80
- "secp256k1": "4.0.2",
81
- "stellar-sdk": "^10.0.1",
82
- "tronweb": "^3.2.6",
83
- "tweetnacl": "^1.0.3"
84
- },
85
- "devDependencies": {
86
- "@types/bs58": "^4.0.1",
87
- "@types/elliptic": "^6.4.12",
88
- "@types/libsodium-wrappers": "^0.7.7",
89
- "@types/node": "^11.13.22",
90
- "@types/sinon": "^7.5.0",
91
- "cross-env": "^7.0.3",
92
- "crypto-browserify": "^3.12.0",
93
- "eslint-plugin-import": "^2.19.1",
94
- "eslint-plugin-jsdoc": "^33.0.0",
95
- "glob": "^7.1.3",
96
- "https-browserify": "^1.0.0",
97
- "lint-staged": "^8.1.4",
98
- "nyc": "^15.0.0",
99
- "process": "^0.11.10",
100
- "should": "^13.1.3",
101
- "sinon": "^7.5.0",
102
- "stream-http": "^3.2.0",
103
- "url": "^0.11.0",
104
- "webpack": "^5.66.0",
105
- "webpack-cli": "^4.9.1"
106
- },
107
- "nyc": {
108
- "extension": [
109
- ".ts"
110
- ],
111
- "include": [
112
- "src/**/*.ts"
113
- ]
114
- },
115
- "husky": {
116
- "hooks": {
117
- "pre-commit": "lint-staged"
118
- }
119
- },
120
- "lint-staged": {
121
- "*.{js,ts,tsx}": [
122
- "eslint --fix",
123
- "git add"
124
- ]
125
- },
126
- "publishConfig": {
127
- "access": "public"
128
- },
129
- "gitHead": "6630ac7a24f6eec18b36dbe15a1ce92948d4f50e"
130
- }