@stacks/storage 3.2.0 → 3.2.1-alpha.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.
- package/dist/index.umd.js +2 -0
- package/dist/index.umd.js.LICENSE.txt +12 -0
- package/package.json +11 -8
- package/CHANGELOG.md +0 -73
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* The buffer module from node.js, for the browser.
|
|
3
|
+
*
|
|
4
|
+
* @author Feross Aboukhadijeh <https://feross.org>
|
|
5
|
+
* @license MIT
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
/*! For license information please see index.umd.js.LICENSE.txt */
|
|
9
|
+
|
|
10
|
+
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
11
|
+
|
|
12
|
+
/*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacks/storage",
|
|
3
|
-
"version": "3.2.0",
|
|
3
|
+
"version": "3.2.1-alpha.0",
|
|
4
4
|
"description": "Stacks storage library",
|
|
5
5
|
"author": "yknl <yukanliao@gmail.com>",
|
|
6
6
|
"homepage": "https://blockstack.org",
|
|
@@ -15,14 +15,15 @@
|
|
|
15
15
|
},
|
|
16
16
|
"scripts": {
|
|
17
17
|
"start": "tsc -b tsconfig.build.json --watch --verbose",
|
|
18
|
-
"build": "npm run clean && npm run build:cjs && npm run build:esm",
|
|
18
|
+
"build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:umd",
|
|
19
19
|
"build:cjs": "tsc -b tsconfig.build.json",
|
|
20
20
|
"build:esm": "tsc -p tsconfig.build.json --module ES6 --outDir ./dist/esm",
|
|
21
21
|
"build:umd": "webpack --config webpack.config.js",
|
|
22
22
|
"clean": "rimraf dist && tsc -b tsconfig.build.json --clean",
|
|
23
23
|
"typecheck": "tsc --noEmit",
|
|
24
24
|
"typecheck:watch": "npm run typecheck -- --watch",
|
|
25
|
-
"
|
|
25
|
+
"pack": "npm pack",
|
|
26
|
+
"prepublishOnly": "npm run test && npm run build",
|
|
26
27
|
"test": "jest",
|
|
27
28
|
"test:watch": "jest --watch --coverage=false"
|
|
28
29
|
},
|
|
@@ -30,9 +31,9 @@
|
|
|
30
31
|
"url": "https://github.com/blockstack/blockstack.js/issues"
|
|
31
32
|
},
|
|
32
33
|
"dependencies": {
|
|
33
|
-
"@stacks/auth": "^3.2.0",
|
|
34
|
-
"@stacks/common": "^3.
|
|
35
|
-
"@stacks/encryption": "^3.
|
|
34
|
+
"@stacks/auth": "^3.2.1-alpha.0",
|
|
35
|
+
"@stacks/common": "^3.2.1-alpha.0",
|
|
36
|
+
"@stacks/encryption": "^3.2.1-alpha.0",
|
|
36
37
|
"bitcoinjs-lib": "^5.2.0",
|
|
37
38
|
"jsontokens": "^3.0.0"
|
|
38
39
|
},
|
|
@@ -44,6 +45,7 @@
|
|
|
44
45
|
"jest-module-name-mapper": "^0.1.5",
|
|
45
46
|
"jsdom": "^16.5.3",
|
|
46
47
|
"rimraf": "^3.0.2",
|
|
48
|
+
"stream-browserify": "^3.0.0",
|
|
47
49
|
"ts-jest": "^26.5.5",
|
|
48
50
|
"ts-loader": "^9.1.1",
|
|
49
51
|
"typescript": "^4.2.4",
|
|
@@ -51,10 +53,11 @@
|
|
|
51
53
|
"webpack-cli": "^4.6.0"
|
|
52
54
|
},
|
|
53
55
|
"sideEffects": false,
|
|
56
|
+
"typings": "dist/index.d.ts",
|
|
54
57
|
"main": "dist/index.js",
|
|
55
58
|
"module": "dist/esm/index.js",
|
|
56
|
-
"
|
|
59
|
+
"browser": "dist/index.umd.js",
|
|
57
60
|
"umd:main": "dist/index.umd.js",
|
|
58
61
|
"unpkg": "dist/index.umd.js",
|
|
59
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "46603eb7dfed1a6a57870d0c45273140bd3f035c"
|
|
60
63
|
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
-
|
|
6
|
-
# [3.2.0](https://github.com/blockstack/blockstack.js/compare/v3.1.1...v3.2.0) (2022-02-02)
|
|
7
|
-
|
|
8
|
-
**Note:** Version bump only for package @stacks/storage
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
# [3.1.0](https://github.com/blockstack/blockstack.js/compare/v3.0.0...v3.1.0) (2021-12-16)
|
|
15
|
-
|
|
16
|
-
**Note:** Version bump only for package @stacks/storage
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
## [2.0.1](https://github.com/blockstack/blockstack.js/compare/v2.0.1-beta.2...v2.0.1) (2021-08-09)
|
|
23
|
-
|
|
24
|
-
**Note:** Version bump only for package @stacks/storage
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
## [2.0.1-beta.2](https://github.com/blockstack/blockstack.js/compare/v2.0.1-beta.1...v2.0.1-beta.2) (2021-08-06)
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
### Bug Fixes
|
|
34
|
-
|
|
35
|
-
* fix coreNode error when fetching public data with no user session ([144754b](https://github.com/blockstack/blockstack.js/commit/144754b80f05bff1a4656be87d4ab09b4076d37c))
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
## [2.0.1-beta.1](https://github.com/blockstack/blockstack.js/compare/v2.0.0-beta.1...v2.0.1-beta.1) (2021-07-26)
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
### Features
|
|
45
|
-
|
|
46
|
-
* refactor all js `number` and `bn.js` usages in Clarity integer values to native bigint ([1f78339](https://github.com/blockstack/blockstack.js/commit/1f783397e7f5b38aabb6e0342af71b58022aed4c))
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
# [2.0.0-beta.2](https://github.com/blockstack/blockstack.js/compare/v2.0.0-beta.1...v2.0.0-beta.2) (2021-07-26)
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
### Features
|
|
56
|
-
|
|
57
|
-
* refactor all js `number` and `bn.js` usages in Clarity integer values to native bigint ([1f78339](https://github.com/blockstack/blockstack.js/commit/1f783397e7f5b38aabb6e0342af71b58022aed4c))
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
## [1.3.3](https://github.com/blockstack/blockstack.js/compare/v1.3.2...v1.3.3) (2021-03-18)
|
|
64
|
-
|
|
65
|
-
**Note:** Version bump only for package @stacks/storage
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
## [1.2.3](https://github.com/blockstack/blockstack.js/compare/v1.2.2...v1.2.3) (2021-02-25)
|
|
72
|
-
|
|
73
|
-
**Note:** Version bump only for package @stacks/storage
|