@capgo/capacitor-native-biometric 8.0.1 → 8.0.3
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.
|
@@ -11,7 +11,7 @@ import LocalAuthentication
|
|
|
11
11
|
|
|
12
12
|
@objc(NativeBiometricPlugin)
|
|
13
13
|
public class NativeBiometricPlugin: CAPPlugin, CAPBridgedPlugin {
|
|
14
|
-
private let pluginVersion: String = "8.0.
|
|
14
|
+
private let pluginVersion: String = "8.0.3"
|
|
15
15
|
public let identifier = "NativeBiometricPlugin"
|
|
16
16
|
public let jsName = "NativeBiometric"
|
|
17
17
|
public let pluginMethods: [CAPPluginMethod] = [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capgo/capacitor-native-biometric",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.3",
|
|
4
4
|
"description": "This plugin gives access to the native biometric apis for android and iOS",
|
|
5
5
|
"main": "dist/plugin.cjs.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -32,6 +32,7 @@
|
|
|
32
32
|
"bugs": {
|
|
33
33
|
"url": "https://github.com/Cap-go/capacitor-native-biometric/issues"
|
|
34
34
|
},
|
|
35
|
+
"homepage": "https://capgo.app/docs/plugins/native-biometric/",
|
|
35
36
|
"scripts": {
|
|
36
37
|
"verify": "npm run verify:ios && npm run verify:android && npm run verify:web",
|
|
37
38
|
"verify:ios": "xcodebuild -scheme CapgoCapacitorNativeBiometric -destination generic/platform=iOS",
|
|
@@ -40,7 +41,7 @@
|
|
|
40
41
|
"lint": "npm run eslint && npm run prettier -- --check && npm run swiftlint -- lint",
|
|
41
42
|
"fmt": "npm run eslint -- --fix && npm run prettier -- --write && npm run swiftlint -- --fix --format",
|
|
42
43
|
"eslint": "eslint . --ext ts",
|
|
43
|
-
"prettier": "prettier \"**/*.{css,html,ts,js,java}\" --plugin=prettier-plugin-java",
|
|
44
|
+
"prettier": "prettier-pretty-check \"**/*.{css,html,ts,js,java}\" --plugin=prettier-plugin-java",
|
|
44
45
|
"swiftlint": "node-swiftlint",
|
|
45
46
|
"docgen": "docgen --api NativeBiometricPlugin --output-readme README.md --output-json dist/docs.json",
|
|
46
47
|
"build": "npm run clean && npm run docgen && tsc && rollup -c rollup.config.mjs",
|
|
@@ -56,13 +57,16 @@
|
|
|
56
57
|
"@ionic/eslint-config": "^0.4.0",
|
|
57
58
|
"@ionic/prettier-config": "^4.0.0",
|
|
58
59
|
"@ionic/swiftlint-config": "^2.0.0",
|
|
60
|
+
"@types/node": "^24.10.1",
|
|
59
61
|
"eslint": "^8.57.1",
|
|
62
|
+
"eslint-plugin-import": "^2.31.0",
|
|
60
63
|
"prettier": "^3.6.2",
|
|
61
64
|
"prettier-plugin-java": "^2.7.7",
|
|
62
65
|
"rimraf": "^6.1.0",
|
|
63
66
|
"rollup": "^4.53.2",
|
|
64
67
|
"swiftlint": "^2.0.0",
|
|
65
|
-
"typescript": "^5.9.3"
|
|
68
|
+
"typescript": "^5.9.3",
|
|
69
|
+
"prettier-pretty-check": "^0.2.0"
|
|
66
70
|
},
|
|
67
71
|
"peerDependencies": {
|
|
68
72
|
"@capacitor/core": ">=8.0.0"
|