base58-core 1.0.0 → 1.0.2

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.
Files changed (2) hide show
  1. package/README.md +10 -0
  2. package/package.json +23 -5
package/README.md CHANGED
@@ -1,3 +1,9 @@
1
+
2
+ ![npm](https://img.shields.io/npm/v/base58-core)
3
+ ![npm downloads](https://img.shields.io/npm/dm/base58-core)
4
+ ![license](https://img.shields.io/npm/l/base58-core)
5
+ ![bundle size](https://img.shields.io/bundlephobia/min/base58-core)
6
+
1
7
  # @base58/core
2
8
 
3
9
  Fast, tree-shakeable Base58 encoding with TypeScript support. Zero dependencies.
@@ -10,6 +16,10 @@ Fast, tree-shakeable Base58 encoding with TypeScript support. Zero dependencies.
10
16
  - Full TypeScript types included
11
17
  - Compatible with Bitcoin, Solana, IPFS
12
18
 
19
+ ## CLI Tool
20
+
21
+ For command-line usage: [base58-cli](https://www.npmjs.com/package/base58-cli)
22
+
13
23
  ## Install
14
24
 
15
25
  npm install @base58/core
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "base58-core",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
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": ["dist", "README.md", "LICENSE"],
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", "base58check", "bitcoin", "solana", "crypto",
24
- "encoding", "decoding", "typescript", "esm", "cjs",
25
- "wallet", "address", "blockchain", "web3"
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
  }