-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.39 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "@themobilefirstcompany/react-native-data-detector",
"version": "0.1.0",
"description": "Cross-platform text data detection for React Native. Uses NSDataDetector on iOS and ML Kit Entity Extraction on Android to detect phone numbers, URLs, emails, dates, and addresses.",
"keywords": [
"react-native",
"expo",
"data-detector",
"nsdatadetector",
"mlkit",
"entity-extraction",
"phone-number",
"url",
"email",
"address",
"date"
],
"homepage": "https://github.com/themobilefirstco/react-native-data-detector#readme",
"bugs": {
"url": "https://github.com/themobilefirstco/react-native-data-detector/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/themobilefirstco/react-native-data-detector.git"
},
"license": "MIT",
"author": "pablogdcr",
"type": "commonjs",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "expo-module build",
"clean": "expo-module clean",
"lint": "expo-module lint",
"test": "expo-module test",
"prepare": "expo-module prepare",
"prepublishOnly": "expo-module prepublishOnly",
"expo-module": "expo-module"
},
"devDependencies": {
"expo-module-scripts": "^4.0.0",
"expo-modules-core": "^2.0.0",
"typescript": "^5.3.0"
},
"peerDependencies": {
"expo": "*",
"react": "*",
"react-native": "*"
}
}