cordova-digital-onboarding 1.0.0

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/package.json +20 -0
  2. package/plugin.xml +29 -0
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "cordova-digital-onboarding",
3
+ "title": "Digital Onboarding Cordova Plugin",
4
+ "version": "1.0.0",
5
+ "description": "Wultra Digital Onboarding for Cordova",
6
+ "main": "lib/index.js",
7
+ "types": "lib/index.d.ts",
8
+ "type": "commonjs",
9
+ "files": [
10
+ "README.md",
11
+ "LICENSE",
12
+ "lib/index.js",
13
+ "lib/index.d.ts",
14
+ "plugin.xml",
15
+ "docs/"
16
+ ],
17
+ "author": "Wultra <support@wultra.com> (https://wultra.com)",
18
+ "license": "Apache-2.0",
19
+ "homepage": "https://www.wultra.com/"
20
+ }
package/plugin.xml ADDED
@@ -0,0 +1,29 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="cordova-digital-onboarding" version="1.0.0">
3
+ <name>Digital Onboarding Cordova Plugin</name>
4
+ <description>Wultra Digital Onboarding for Cordova</description>
5
+ <license>Apache 2.0</license>
6
+ <keywords>cordova,digital-onboarding</keywords>
7
+
8
+ <!-- JS MODULE -->
9
+ <js-module name="WultraDigitalOnboarding" src="lib/index.js">
10
+ <!-- We want to expose all public APIs globally (on the window object) -->
11
+ <merges target="window" />
12
+ </js-module>
13
+
14
+ <!-- ENGINES -->
15
+ <engines>
16
+ <engine name="cordova" version=">=12.0.0"/>
17
+ <engine name="cordova-android" version=">=12.0.0" />
18
+ <engine name="cordova-ios" version=">=7.0.0" />
19
+ </engines>
20
+
21
+ <!-- DEPENDENCIES -->
22
+ <dependency id="cordova-powerauth-networking" version="1.0.1" />
23
+
24
+ <!-- PLATFORMS -->
25
+ <platform name="android" kotlin="1.9.22">
26
+ </platform>
27
+ <platform name="ios">
28
+ </platform>
29
+ </plugin>