-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.79 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "expo-translate-text",
"version": "0.3.0",
"description": "Translate text using native platform APIs (Apple Translation / Google ML Kit)",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "expo-module build",
"clean": "expo-module clean",
"lint": "expo-module lint",
"typecheck": "expo-module typecheck",
"test": "expo-module test",
"prepare": "expo-module prepare",
"prepublishOnly": "expo-module prepublishOnly",
"expo-module": "expo-module",
"example:start": "cd example && npx expo start",
"example:ios": "cd example && npx expo run:ios",
"example:android": "cd example && npx expo run:android",
"open:ios": "xed example/ios",
"open:android": "open -a \"Android Studio\" example/android",
"release": "release-it"
},
"keywords": [
"react-native",
"expo",
"expo-translate-text",
"ExpoTranslateText"
],
"repository": "https://github.com/TomAtterton/expo-translate-text",
"bugs": {
"url": "https://github.com/TomAtterton/expo-translate-text/issues"
},
"author": "Tom Atterton <tpatterton@gmail.com> (https://github.com/TomAtterton)",
"license": "MIT",
"homepage": "https://github.com/TomAtterton/expo-translate-text#readme",
"files": [
"build",
"ios",
"android/src",
"android/build.gradle",
"src",
"expo-module.config.json",
"README.md"
],
"devDependencies": {
"@types/react": "~19.2.4",
"eslint": "^8.57.1",
"expo": "^57.0.1",
"expo-module-scripts": "^56.0.3",
"jest": "^29.7.0",
"prettier": "^3.9.4",
"react": "19.2.3",
"react-native": "0.86.0",
"release-it": "^20.2.1",
"typescript": "~6.0.3"
},
"peerDependencies": {
"expo": ">=51.0.0",
"react": ">=18.0.0",
"react-native": ">=0.74.0"
}
}