@ardrive/turbo-sdk 1.1.0 → 1.1.1-alpha.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.
- package/README.md +28 -6
- package/bundles/web.bundle.min.js +111592 -50637
- package/lib/cjs/version.js +1 -1
- package/lib/esm/version.js +1 -1
- package/lib/types/version.d.ts +1 -1
- package/package.json +7 -6
package/lib/cjs/version.js
CHANGED
package/lib/esm/version.js
CHANGED
package/lib/types/version.d.ts
CHANGED
@@ -14,5 +14,5 @@
|
|
14
14
|
* You should have received a copy of the GNU Affero General Public License
|
15
15
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
16
16
|
*/
|
17
|
-
export declare const version = "1.1.
|
17
|
+
export declare const version = "1.1.1-alpha.1";
|
18
18
|
//# sourceMappingURL=version.d.ts.map
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ardrive/turbo-sdk",
|
3
|
-
"version": "1.1.
|
3
|
+
"version": "1.1.1-alpha.2",
|
4
4
|
"main": "./lib/cjs/node/index.js",
|
5
5
|
"types": "./lib/types/node/index.d.ts",
|
6
6
|
"module": "./lib/esm/node/index.js",
|
@@ -25,7 +25,8 @@
|
|
25
25
|
".": {
|
26
26
|
"import": "./lib/esm/node/index.js",
|
27
27
|
"require": "./lib/cjs/node/index.js",
|
28
|
-
"types": "./lib/types/node/index.d.ts"
|
28
|
+
"types": "./lib/types/node/index.d.ts",
|
29
|
+
"browser": "./bundles/web.bundle.min.js"
|
29
30
|
},
|
30
31
|
"./node": {
|
31
32
|
"import": "./lib/esm/node/index.js",
|
@@ -33,8 +34,8 @@
|
|
33
34
|
"types": "./lib/types/node/index.d.ts"
|
34
35
|
},
|
35
36
|
"./web": {
|
36
|
-
"import": "./
|
37
|
-
"require": "./
|
37
|
+
"import": "./bundles/web.bundle.min.js",
|
38
|
+
"require": "./bundles/web.bundle.min.js",
|
38
39
|
"types": "./lib/types/web/index.d.ts",
|
39
40
|
"browser": "./bundles/web.bundle.min.js"
|
40
41
|
}
|
@@ -44,7 +45,7 @@
|
|
44
45
|
},
|
45
46
|
"license": "AGPL-3.0-or-later",
|
46
47
|
"scripts": {
|
47
|
-
"build:web": "node bundle.
|
48
|
+
"build:web": "node bundle.mjs",
|
48
49
|
"build:esm": "yarn tsc -p tsconfig.json",
|
49
50
|
"build:cjs": "yarn tsc -p tsconfig.cjs.json && echo '{\"type\": \"commonjs\"}' > lib/cjs/package.json",
|
50
51
|
"build:types": "yarn tsc -p tsconfig.types.json",
|
@@ -86,6 +87,7 @@
|
|
86
87
|
"c8": "^8.0.1",
|
87
88
|
"chai": "^4.3.7",
|
88
89
|
"esbuild": "^0.19.2",
|
90
|
+
"esbuild-plugin-polyfill-node": "^0.3.0",
|
89
91
|
"eslint": "^8.47.0",
|
90
92
|
"eslint-config-prettier": "^9.0.0",
|
91
93
|
"eslint-config-standard-with-typescript": "^37.0.0",
|
@@ -98,7 +100,6 @@
|
|
98
100
|
"http-server": "^14.1.1",
|
99
101
|
"husky": "^8.0.3",
|
100
102
|
"mocha": "^10.2.0",
|
101
|
-
"node-stdlib-browser": "^1.2.0",
|
102
103
|
"prettier": "^3.0.2",
|
103
104
|
"rimraf": "^5.0.1",
|
104
105
|
"semantic-release": "^21.0.7",
|