@layercode/js-sdk 1.0.9 → 1.0.11

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 CHANGED
@@ -1,3 +1,19 @@
1
1
  # Layercode JavaScript SDK
2
2
 
3
- A JavaScript SDK for integrating Layercode audio pipelines into web applications. This SDK is designed for browser use only.
3
+ A JavaScript SDK for integrating Layercode voice pipelines into web applications.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install @layercode/js-sdk
9
+ ```
10
+
11
+ Or you can use a script tag in your HTML:
12
+
13
+ ```html
14
+ <script src="https://cdn.jsdelivr.net/npm/@layercode/js-sdk@VERSION/src/layercode-js-sdk.min.js"></script>
15
+ ```
16
+
17
+ ## Usage
18
+
19
+ Read the docs: [https://docs.layercode.com/sdk-reference/vanilla_js_sdk](https://docs.layercode.com/sdk-reference/vanilla_js_sdk)
package/package.json CHANGED
@@ -1,6 +1,8 @@
1
1
  {
2
+ "author": "Layercode",
3
+ "license": "MIT",
2
4
  "name": "@layercode/js-sdk",
3
- "version": "1.0.9",
5
+ "version": "1.0.11",
4
6
  "description": "Layercode JavaScript SDK for browser usage",
5
7
  "type": "module",
6
8
  "main": "dist/layercode-js-sdk.esm.js",
@@ -29,8 +31,6 @@
29
31
  "sdk",
30
32
  "browser"
31
33
  ],
32
- "author": "Layercode",
33
- "license": "MIT",
34
34
  "publishConfig": {
35
35
  "access": "public"
36
36
  },