electron-check-biometric-auth-changed
Version:
Query and handle native macOS biometric authentication changes.
54 lines (53 loc) • 1.35 kB
JSON
{
"name": "electron-check-biometric-auth-changed",
"version": "0.0.6",
"description": "Query and handle native macOS biometric authentication changes.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"install": "",
"build": "node-gyp rebuild",
"clean": "node-gyp clean",
"lint": "clang-format --dry-run -Werror auth.mm && prettier --check index.js",
"format": "clang-format -i auth.mm && prettier --write index.js",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OneKeyHQ/electron-check-biometric-auth-changed.git"
},
"keywords": [
"auth",
"touchid",
"mac",
"electron",
"nodejs"
],
"author": "huhuanming",
"license": "MIT",
"bugs": {
"url": "https://github.com/OneKeyHQ/electron-check-biometric-auth-changed/issues"
},
"homepage": "https://github.com/OneKeyHQ/electron-check-biometric-auth-changed#readme",
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^7.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"clang-format": "^1.8.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"mocha": "^10.3.0",
"node-gyp": "^10.0.1",
"prettier": "^3.3.0"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.mm": [
"clang-format -i"
]
}
}