base58-core 1.0.0 → 1.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/README.md +4 -0
- package/package.json +23 -5
package/README.md
CHANGED
|
@@ -10,6 +10,10 @@ Fast, tree-shakeable Base58 encoding with TypeScript support. Zero dependencies.
|
|
|
10
10
|
- Full TypeScript types included
|
|
11
11
|
- Compatible with Bitcoin, Solana, IPFS
|
|
12
12
|
|
|
13
|
+
## CLI Tool
|
|
14
|
+
|
|
15
|
+
For command-line usage: [base58-cli](https://www.npmjs.com/package/base58-cli)
|
|
16
|
+
|
|
13
17
|
## Install
|
|
14
18
|
|
|
15
19
|
npm install @base58/core
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "base58-core",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Fast, tree-shakeable Base58 encoder/decoder with TypeScript support",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -13,16 +13,31 @@
|
|
|
13
13
|
"types": "./dist/index.d.ts"
|
|
14
14
|
}
|
|
15
15
|
},
|
|
16
|
-
"files": [
|
|
16
|
+
"files": [
|
|
17
|
+
"dist",
|
|
18
|
+
"README.md",
|
|
19
|
+
"LICENSE"
|
|
20
|
+
],
|
|
17
21
|
"scripts": {
|
|
18
22
|
"build": "rollup -c",
|
|
19
23
|
"test": "node --test",
|
|
20
24
|
"prepublishOnly": "npm run build"
|
|
21
25
|
},
|
|
22
26
|
"keywords": [
|
|
23
|
-
"base58",
|
|
24
|
-
"
|
|
25
|
-
"
|
|
27
|
+
"base58",
|
|
28
|
+
"base58check",
|
|
29
|
+
"bitcoin",
|
|
30
|
+
"solana",
|
|
31
|
+
"crypto",
|
|
32
|
+
"encoding",
|
|
33
|
+
"decoding",
|
|
34
|
+
"typescript",
|
|
35
|
+
"esm",
|
|
36
|
+
"cjs",
|
|
37
|
+
"wallet",
|
|
38
|
+
"address",
|
|
39
|
+
"blockchain",
|
|
40
|
+
"web3"
|
|
26
41
|
],
|
|
27
42
|
"author": "base58",
|
|
28
43
|
"license": "MIT",
|
|
@@ -35,5 +50,8 @@
|
|
|
35
50
|
"rollup": "^4.0.0",
|
|
36
51
|
"tslib": "^2.6.0",
|
|
37
52
|
"typescript": "^5.3.0"
|
|
53
|
+
},
|
|
54
|
+
"dependencies": {
|
|
55
|
+
"base58-core": "^1.0.0"
|
|
38
56
|
}
|
|
39
57
|
}
|