despia-native 1.0.12 → 1.0.13

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.
Files changed (2) hide show
  1. package/README.md +23 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -22,7 +22,25 @@ const appInfo = await despia('getappversion://', ['versionNumber']);
22
22
 
23
23
  ---
24
24
 
25
- JavaScript SDK for [Despia](https://despia.com) - Transform your web app into a native iOS & Android app without writing Swift or Kotlin. This npm package provides command queuing and variable watching for seamless integration with Despia's GPU-accelerated native runtime, enabling access to 25+ device APIs through simple JavaScript calls.
25
+ JavaScript SDK for [Despia](https://despia.com) - Add native device features to your React web app, Vue app, Angular app, or any web framework. Transform your web app into a native iOS & Android app without writing Swift or Kotlin. This npm package provides command queuing and variable watching for seamless integration with Despia's GPU-accelerated native runtime, enabling access to 25+ device APIs through simple JavaScript calls.
26
+
27
+ **Note: This is for web apps (React, Vue, Angular, etc.) to add native features - NOT for React Native apps.**
28
+
29
+ ## Web Apps vs React Native
30
+
31
+ **This SDK is for:**
32
+ - React web apps (create-react-app, Next.js, Vite, etc.)
33
+ - Vue web apps
34
+ - Angular web apps
35
+ - Svelte web apps
36
+ - Any web framework or vanilla JavaScript
37
+
38
+ **This SDK is NOT for:**
39
+ - React Native apps
40
+ - Expo apps
41
+ - Native mobile development
42
+
43
+ **If you're building a React Native app, this SDK won't work for you.**
26
44
 
27
45
  **Import:** `import despia from 'despia-native';` (default export, not destructured)
28
46
 
@@ -30,14 +48,15 @@ JavaScript SDK for [Despia](https://despia.com) - Transform your web app into a
30
48
 
31
49
  ## About Despia
32
50
 
33
- Despia bridges the gap between web and native mobile development. Build your app using the web technologies you already know, then deploy it as a truly native application to the App Store and Google Play - complete with hardware acceleration, offline support, and deep OS integration.
51
+ Despia bridges the gap between web and native mobile development. Build your React web app, Vue app, Angular app, or any web framework using the technologies you already know, then deploy it as a truly native application to the App Store and Google Play - complete with hardware acceleration, offline support, and deep OS integration.
34
52
 
35
53
  Our visual editor allows you to configure native widgets, shortcuts, and dynamic app behaviors without touching Xcode or Android Studio. Ship to both app stores with one-click deployment, automatic CI/CD pipelines, and over-the-air updates. Export clean, human-readable Swift and Kotlin source code anytime - you own everything, no vendor lock-in.
36
54
 
37
55
  **Go from web app to app store in a weekend - with full native capabilities.**
38
56
 
39
57
  ### Key Features:
40
- - **Universal Framework Support** - Works with React, Vue, Angular, Svelte, vanilla JS, or any web framework
58
+ - **Web Framework Support** - Works with React web apps, Vue web apps, Angular web apps, Svelte web apps, vanilla JS, or any web framework
59
+ - **NOT for React Native** - This is for web apps to add native features, not React Native apps
41
60
  - **Visual Configuration** - Set up native features through an intuitive interface
42
61
  - **Zero Native Coding** - Access device APIs without writing Swift or Kotlin
43
62
  - **Source Code Export** - Get complete Xcode and Android Studio projects you can modify
@@ -47,7 +66,7 @@ Our visual editor allows you to configure native widgets, shortcuts, and dynamic
47
66
  - **OTA Updates** - Push updates instantly without app store review
48
67
  - **Performance** - 60fps GPU-accelerated rendering
49
68
  - **Device API Access** - NFC, HealthKit, Siri, RevenueCat, and 20+ more
50
- - **Single Codebase** - Maintain one project for iOS, Android, and web
69
+ - **Single Codebase** - Maintain one web project for iOS, Android, and web
51
70
 
52
71
  ### Native Device Features:
53
72
  - **App Links & Deep Linking** - Universal links and app-to-app communication
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "despia-native",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
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",