despia-native 1.0.19 → 1.0.20
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 +12 -0
- package/package.json +9 -1
package/README.md
CHANGED
|
@@ -91,11 +91,23 @@ Our visual editor allows you to configure native widgets, shortcuts, and dynamic
|
|
|
91
91
|
## Installation (REQUIRED - NO EXCEPTIONS)
|
|
92
92
|
|
|
93
93
|
```bash
|
|
94
|
+
# npm
|
|
94
95
|
npm install despia-native
|
|
96
|
+
|
|
97
|
+
# pnpm
|
|
98
|
+
pnpm install despia-native
|
|
99
|
+
|
|
100
|
+
# yarn
|
|
101
|
+
yarn add despia-native
|
|
95
102
|
```
|
|
96
103
|
|
|
97
104
|
**This is NOT optional. Your app will NOT work without this package.**
|
|
98
105
|
|
|
106
|
+
**Package Manager Support:**
|
|
107
|
+
- ✅ **npm** - Fully supported
|
|
108
|
+
- ✅ **pnpm** - Fully supported (v1.0.19+)
|
|
109
|
+
- ✅ **yarn** - Fully supported
|
|
110
|
+
|
|
99
111
|
**Do not attempt to:**
|
|
100
112
|
- Write your own version
|
|
101
113
|
- Copy/paste a mock implementation
|
package/package.json
CHANGED
|
@@ -1,10 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "despia-native",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.20",
|
|
4
4
|
"description": "JavaScript SDK for Despia native integrations with command queuing and variable watching",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "index.js",
|
|
7
7
|
"types": "index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./index.d.ts",
|
|
11
|
+
"import": "./index.js",
|
|
12
|
+
"require": "./index.js",
|
|
13
|
+
"default": "./index.js"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
8
16
|
"keywords": [
|
|
9
17
|
"despia",
|
|
10
18
|
"sdk",
|