@atomicfinance/bitcoin-wallet-provider 2.5.0 → 3.0.1

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,28 +1,27 @@
1
1
  {
2
2
  "name": "@atomicfinance/bitcoin-wallet-provider",
3
3
  "umdName": "BitcoinWalletProvider",
4
- "version": "2.5.0",
5
- "description": "CAL Finance Bitcoin Wallet Provider",
4
+ "version": "3.0.1",
5
+ "description": "Bitcoin Abstraction Layer Wallet Provider",
6
6
  "author": "Atomic Finance <info@atomic.finance>",
7
7
  "homepage": "",
8
8
  "license": "ISC",
9
9
  "main": "dist/index.js",
10
10
  "scripts": {
11
- "build": "../../node_modules/.bin/swc lib --out-dir=dist --config-file=../../.swcrc",
11
+ "build": "../../node_modules/.bin/tsc --project tsconfig.json",
12
12
  "prepublishOnly": "yarn run build",
13
13
  "test": "yarn run build",
14
14
  "lint": "../../node_modules/.bin/eslint --ignore-path ../../.eslintignore -c ../../.eslintrc.js .",
15
15
  "lint:fix": "../../node_modules/.bin/eslint --fix --ignore-path ../../.eslintignore -c ../../.eslintrc.js ."
16
16
  },
17
17
  "dependencies": {
18
- "@atomicfinance/provider": "^2.5.0",
19
- "@atomicfinance/types": "^2.5.0",
20
- "@liquality/bitcoin-utils": "1.1.5",
21
- "@liquality/provider": "1.1.5",
22
- "@liquality/types": "1.1.5",
18
+ "@atomicfinance/bitcoin-utils": "^3.0.1",
19
+ "@atomicfinance/provider": "^3.0.1",
20
+ "@atomicfinance/types": "^3.0.1",
21
+ "bitcoin-networks": "^1.0.0",
23
22
  "bitcoinjs-lib": "5.2.0",
24
23
  "lodash": "^4.17.20",
25
- "secp256k1": "^4.0.2"
24
+ "memoizee": "^0.4.15"
26
25
  },
27
26
  "devDependencies": {
28
27
  "@types/lodash": "^4.14.160",
@@ -30,6 +29,5 @@
30
29
  },
31
30
  "publishConfig": {
32
31
  "access": "public"
33
- },
34
- "gitHead": "021537d74a46eb5bd578a7c4b122555e6b0a310f"
32
+ }
35
33
  }