Features: - Add scanning progress indicator showing current detection step - Detect payment cards (Visa, Mastercard, Amex, etc.) via PPSE/EMV AIDs - Show "Payment Device Detected" instead of "Implant Detected" for payment cards - Hide compatible implants section for payment devices, show conversion instead - Add Spark 1/2 implant detection via vivokey.co NDEF URL - Hide conversion card when actual implant is detected Technical: - Add DetectionProgressCallback for real-time detection status - Add payment network AIDs to commands.ts - Configure babel to strip console.log/warn in production builds - Add logger utility for development-only logging Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
53 lines
1.5 KiB
JSON
53 lines
1.5 KiB
JSON
{
|
|
"name": "dt-nfc-identifier",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"private": true,
|
|
"scripts": {
|
|
"start": "expo start",
|
|
"android": "expo run:android",
|
|
"ios": "expo run:ios",
|
|
"prebuild": "expo prebuild",
|
|
"prebuild:clean": "expo prebuild --clean",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"test": "jest",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@react-navigation/native": "^7.1.27",
|
|
"@react-navigation/native-stack": "^7.9.1",
|
|
"babel-preset-expo": "^54.0.9",
|
|
"expo": "^54.0.31",
|
|
"expo-dev-client": "^6.0.20",
|
|
"expo-status-bar": "^3.0.9",
|
|
"react": "19.2.0",
|
|
"react-native": "0.83.1",
|
|
"react-native-nfc-manager": "^3.17.2",
|
|
"react-native-paper": "^5.14.5",
|
|
"react-native-safe-area-context": "~5.6.0",
|
|
"react-native-screens": "~4.16.0",
|
|
"react-native-vector-icons": "^10.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.25.2",
|
|
"@babel/preset-env": "^7.25.3",
|
|
"@babel/runtime": "^7.25.0",
|
|
"@react-native/babel-preset": "0.83.1",
|
|
"@react-native/eslint-config": "0.83.1",
|
|
"@types/jest": "^29.5.13",
|
|
"@types/react": "^19.2.0",
|
|
"@types/react-native-vector-icons": "^6.4.18",
|
|
"@types/react-test-renderer": "^19.1.0",
|
|
"babel-plugin-transform-remove-console": "^6.9.4",
|
|
"eslint": "^8.19.0",
|
|
"jest": "^29.6.3",
|
|
"prettier": "2.8.8",
|
|
"react-test-renderer": "19.2.0",
|
|
"typescript": "^5.8.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=20"
|
|
}
|
|
}
|