@bloque/sdk 0.0.7 → 0.0.10
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 +26 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,6 +2,30 @@
|
|
|
2
2
|
|
|
3
3
|
The official TypeScript/JavaScript SDK for integrating [Bloque](https://www.bloque.app) into your applications.
|
|
4
4
|
|
|
5
|
+
> **⚠️ Development Notice**
|
|
6
|
+
>
|
|
7
|
+
> This SDK is currently under active development. Breaking changes may occur between versions.
|
|
8
|
+
> We strongly recommend pinning to a specific version in your `package.json` to avoid unexpected issues.
|
|
9
|
+
>
|
|
10
|
+
> ```json
|
|
11
|
+
> {
|
|
12
|
+
> "dependencies": {
|
|
13
|
+
> "@bloque/sdk": "x.x.x"
|
|
14
|
+
> }
|
|
15
|
+
> }
|
|
16
|
+
> ```
|
|
17
|
+
>
|
|
18
|
+
> Replace `x.x.x` with the latest version from [npm](https://www.npmjs.com/package/@bloque/sdk).
|
|
19
|
+
|
|
20
|
+
## Platform Support
|
|
21
|
+
|
|
22
|
+
This SDK is compatible with multiple JavaScript runtimes:
|
|
23
|
+
|
|
24
|
+
- **Node.js** 22.x or higher
|
|
25
|
+
- **Bun** 1.x or higher
|
|
26
|
+
- **Deno** Latest version
|
|
27
|
+
- **Web/Browsers** Modern browsers with ES2020+ support
|
|
28
|
+
|
|
5
29
|
## Features
|
|
6
30
|
|
|
7
31
|
- **TypeScript First**: Built with TypeScript for complete type safety
|
|
@@ -773,8 +797,8 @@ bun run check
|
|
|
773
797
|
|
|
774
798
|
## Requirements
|
|
775
799
|
|
|
776
|
-
- Node.js 22.x
|
|
777
|
-
- TypeScript 5.x or higher (for TypeScript projects)
|
|
800
|
+
- One of the supported runtimes: Node.js 22.x+, Bun 1.x+, Deno, or modern browsers
|
|
801
|
+
- TypeScript 5.x or higher (for TypeScript projects, optional)
|
|
778
802
|
|
|
779
803
|
## Links
|
|
780
804
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bloque/sdk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.10",
|
|
4
4
|
"description": "Official Bloque SDK",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"node": ">=22"
|
|
62
62
|
},
|
|
63
63
|
"scripts": {
|
|
64
|
-
"
|
|
64
|
+
"release": "bun publish",
|
|
65
65
|
"build": "rslib build",
|
|
66
66
|
"dev": "rslib build --watch",
|
|
67
67
|
"clean": "rm -rf node_modules && rm -rf dist",
|