lean-ionic-capacitor 1.0.0 → 1.0.1

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 +2 -0
  2. package/package.json +24 -5
package/README.md CHANGED
@@ -37,6 +37,8 @@ const result = await Lean.connect({
37
37
 
38
38
  ## Setup by platform
39
39
 
40
+ > For full host‑app steps (Android & iOS), see `HOST_APP_SETUP.md`.
41
+
40
42
  ### Web
41
43
 
42
44
  Load the Lean script once (e.g. in `index.html`):
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lean-ionic-capacitor",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Capacitor plugin for integrating Lean Technologies into Ionic apps with native iOS/Android SDK support and Web SDK fallback.",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",
@@ -19,15 +19,31 @@
19
19
  "license": "MIT",
20
20
  "repository": {
21
21
  "type": "git",
22
- "url": "git+https://github.com/imuhammadnadeem/LEAN-Ionic-Capaciotr.git"
22
+ "url": "git+https://github.com/imuhammadnadeem/LEAN-Ionic-Capacitor.git"
23
23
  },
24
24
  "bugs": {
25
- "url": "https://github.com/imuhammadnadeem/LEAN-Ionic-Capaciotr/issues"
25
+ "url": "https://github.com/imuhammadnadeem/LEAN-Ionic-Capacitor/issues"
26
26
  },
27
27
  "keywords": [
28
28
  "capacitor",
29
+ "capacitor-plugin",
30
+ "ionic",
29
31
  "plugin",
30
- "native"
32
+ "native",
33
+ "lean",
34
+ "lean-technologies",
35
+ "lean-link",
36
+ "lean-sdk",
37
+ "open-banking",
38
+ "open-finance",
39
+ "fintech",
40
+ "payments",
41
+ "banking",
42
+ "financial-data",
43
+ "account-aggregation",
44
+ "ios",
45
+ "android",
46
+ "web"
31
47
  ],
32
48
  "scripts": {
33
49
  "verify": "npm run verify:ios && npm run verify:android && npm run verify:web",
@@ -44,7 +60,7 @@
44
60
  "eslint": "eslint . --ext ts",
45
61
  "prettier": "prettier \"**/*.{css,html,ts,js,java}\" --plugin=prettier-plugin-java",
46
62
  "swiftlint": "node-swiftlint lint ios Package.swift",
47
- "docgen": "docgen --api LEANPlugin --output-readme README.md --output-json dist/docs.json",
63
+ "docgen": "docgen --api LeanPlugin --output-readme README.md --output-json dist/docs.json",
48
64
  "build": "npm run clean && tsc && rollup -c rollup.config.mjs",
49
65
  "clean": "rimraf ./dist",
50
66
  "watch": "tsc --watch",
@@ -66,6 +82,9 @@
66
82
  "swiftlint": "^2.0.0",
67
83
  "typescript": "^5.9.3"
68
84
  },
85
+ "optionalDependencies": {
86
+ "@rollup/rollup-linux-x64-gnu": "*"
87
+ },
69
88
  "peerDependencies": {
70
89
  "@capacitor/core": ">=8.0.0"
71
90
  },