@bigmi/core 0.0.7 → 0.1.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/CHANGELOG.md +9 -0
- package/package.json +3 -3
- package/package.json.tmp +60 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.1.1](https://github.com/lifinance/bigmi/compare/v0.0.8...v0.1.1) (2025-02-04)
|
|
6
|
+
|
|
7
|
+
### [0.0.8](https://github.com/lifinance/bigmi/compare/v0.0.7...v0.0.8) (2024-12-30)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
* add Leather and OneKey wallets ([#7](https://github.com/lifinance/bigmi/issues/7)) ([ac93f66](https://github.com/lifinance/bigmi/commit/ac93f665c8baa24752fd0ad4e2c513b72587060f))
|
|
13
|
+
|
|
5
14
|
### [0.0.7](https://github.com/lifinance/bigmi/compare/v0.0.6...v0.0.7) (2024-12-20)
|
|
6
15
|
|
|
7
16
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigmi/core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "TypeScript library for Bitcoin apps.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/esm/index.js",
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
"typescript"
|
|
28
28
|
],
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@noble/hashes": "^1.
|
|
30
|
+
"@noble/hashes": "^1.7.1",
|
|
31
31
|
"bech32": "^2.0.0",
|
|
32
32
|
"bitcoinjs-lib": "^7.0.0-rc.0",
|
|
33
33
|
"bs58": "^6.0.0",
|
|
34
|
-
"viem": "^2.21
|
|
34
|
+
"viem": "^2.22.21"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
37
|
"bs58": "^6.0.0"
|
package/package.json.tmp
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@bigmi/core",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "TypeScript library for Bitcoin apps.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./src/index.ts",
|
|
7
|
+
"types": "./src/index.d.ts",
|
|
8
|
+
"sideEffects": false,
|
|
9
|
+
"scripts": {
|
|
10
|
+
"watch": "tsc -w -p ./tsconfig.json",
|
|
11
|
+
"build": "pnpm clean && pnpm build:esm && pnpm build:cjs && pnpm build:types && pnpm build:clean",
|
|
12
|
+
"build:cjs": "tsc --project ./tsconfig.json --module commonjs --outDir ./dist/cjs --removeComments --verbatimModuleSyntax false && printf '{\"type\":\"commonjs\"}' > ./dist/cjs/package.json",
|
|
13
|
+
"build:esm": "tsc --project ./tsconfig.json --module es2015 --outDir ./dist/esm && printf '{\"type\": \"module\",\"sideEffects\":false}' > ./dist/esm/package.json",
|
|
14
|
+
"build:types": "tsc --project ./tsconfig.json --module esnext --declarationDir ./dist/types --emitDeclarationOnly --declaration --declarationMap",
|
|
15
|
+
"build:prerelease": "node ../../scripts/prerelease.js && cpy '../../*.md' .",
|
|
16
|
+
"build:postrelease": "node ../../scripts/postrelease.js && rm -rf *.md",
|
|
17
|
+
"build:clean": "rm -rf tsconfig.tsbuildinfo ./dist/tsconfig.tsbuildinfo",
|
|
18
|
+
"release:build": "pnpm build",
|
|
19
|
+
"clean": "pnpm build:clean && rm -rf dist",
|
|
20
|
+
"check:types": "tsc --noEmit",
|
|
21
|
+
"check:circular-deps": "madge --circular $(find ./src -name '*.ts' -o -name '*.tsx')",
|
|
22
|
+
"check:circular-deps-graph": "madge --circular $(find ./src -name '*.ts' -o -name '*.tsx') --image graph.svg"
|
|
23
|
+
},
|
|
24
|
+
"author": "Eugene Chybisov <eugene@li.finance>",
|
|
25
|
+
"homepage": "https://github.com/lifinance/bigmi",
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "https://github.com/lifinance/bigmi.git",
|
|
29
|
+
"directory": "packages/core"
|
|
30
|
+
},
|
|
31
|
+
"bugs": {
|
|
32
|
+
"url": "https://github.com/lifinance/bigmi/issues"
|
|
33
|
+
},
|
|
34
|
+
"license": "MIT",
|
|
35
|
+
"keywords": [
|
|
36
|
+
"bitcoin",
|
|
37
|
+
"bitcoinjs",
|
|
38
|
+
"btc",
|
|
39
|
+
"utxo",
|
|
40
|
+
"web3",
|
|
41
|
+
"dapp",
|
|
42
|
+
"typescript"
|
|
43
|
+
],
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@noble/hashes": "^1.7.1",
|
|
46
|
+
"bech32": "^2.0.0",
|
|
47
|
+
"bitcoinjs-lib": "^7.0.0-rc.0",
|
|
48
|
+
"bs58": "^6.0.0",
|
|
49
|
+
"viem": "^2.22.21"
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"cpy-cli": "^5.0.0",
|
|
53
|
+
"madge": "^8.0.0",
|
|
54
|
+
"typescript": "^5.7.3"
|
|
55
|
+
},
|
|
56
|
+
"peerDependencies": {
|
|
57
|
+
"bs58": "^6.0.0"
|
|
58
|
+
},
|
|
59
|
+
"files": ["dist/**", "src/**", "!tsconfig.json"]
|
|
60
|
+
}
|