@aparajita/capacitor-biometric-auth 8.0.2 → 9.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.
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
s.author = package['author']
|
|
13
13
|
s.source = { :git => package['repository']['url'], :tag => s.version.to_s }
|
|
14
14
|
s.source_files = 'ios/Plugin/**/*.{swift,h,m,c,cc,mm,cpp}'
|
|
15
|
-
s.ios.deployment_target = '
|
|
15
|
+
s.ios.deployment_target = '14.0'
|
|
16
16
|
s.dependency 'Capacitor'
|
|
17
17
|
s.swift_version = '5.1'
|
|
18
18
|
end
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# capacitor-biometric-auth [](https://badge.fury.io/js/@aparajita%2Fcapacitor-biometric-auth)
|
|
4
4
|
|
|
5
|
-
This plugin for [Capacitor
|
|
5
|
+
This plugin for [Capacitor 7](https://capacitorjs.com) provides access to native biometry and device credentials on iOS and Android. It supports every type of biometry and every configuration option on both platforms. In addition, biometry and device credentials are simulated on the web so you can test your logic without making any changes to your code.
|
|
6
6
|
|
|
7
7
|
🛑 **BREAKING CHANGES:**
|
|
8
8
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aparajita/capacitor-biometric-auth",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "9.0.0",
|
|
4
4
|
"description": "Provides access to the native biometric auth & device security APIs for Capacitor apps",
|
|
5
5
|
"author": "Aparajita Fishman",
|
|
6
6
|
"license": "MIT",
|
|
@@ -80,14 +80,15 @@
|
|
|
80
80
|
"rollup": "^4.18.1",
|
|
81
81
|
"simple-git-hooks": "^2.11.1",
|
|
82
82
|
"swiftlint": "^1.0.2",
|
|
83
|
-
"typescript": "~5.5.3"
|
|
84
|
-
},
|
|
85
|
-
"dependencies": {
|
|
83
|
+
"typescript": "~5.5.3",
|
|
86
84
|
"@capacitor/android": "^6.1.0",
|
|
87
85
|
"@capacitor/app": "^6.0.0",
|
|
88
86
|
"@capacitor/core": "^6.1.0",
|
|
89
87
|
"@capacitor/ios": "^6.1.0"
|
|
90
88
|
},
|
|
89
|
+
"peerDependencies": {
|
|
90
|
+
"@capacitor/core": ">=6.1.0"
|
|
91
|
+
},
|
|
91
92
|
"scripts": {
|
|
92
93
|
"clean": "rimraf dist",
|
|
93
94
|
"lint.eslint": "eslint --fix --cache --ext .js,.cjs,.mjs,.ts --max-warnings 0",
|