cbyte 1.6.0 → 1.8.0

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/cbyte.js +1 -1
  2. package/package.json +2 -2
package/cbyte.js CHANGED
@@ -56,7 +56,7 @@ async function pack(filePath, outFile, chunkSize = 4096, pin = false) {
56
56
 
57
57
  const manifest = {
58
58
  format: 'cbyte',
59
- version: 1,
59
+ version: 1.8.0,
60
60
  chunk_size: chunkSize,
61
61
  original_size: data.length,
62
62
  original_ext: path.extname(filePath),
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "cbyte",
3
3
  "type": "module",
4
- "version": "1.6.0",
4
+ "version": "1.8.0",
5
5
  "description": "Content-addressed deduplicated storage CLI using IPFS with automatic unpack extension retention",
6
6
  "main": "cbyte.js",
7
7
  "bin": {
8
- "cbyte": "./cbyte.js"
8
+ "cbyte": "cbyte.js"
9
9
  },
10
10
  "scripts": {
11
11
  "test": "node test.js"