-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.04 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
63
64
65
66
67
68
69
70
71
{
"name": "@argo22/mobile-ui-kit",
"version": "1.5.0",
"description": "UI Kit for expo based mobile apps.",
"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",
"typecheck": "tsc",
"prepare": "expo-module prepare",
"prepublishOnly": "expo-module prepublishOnly",
"expo-module": "expo-module",
"open:ios": "xed example/ios",
"open:android": "open -a \"Android Studio\" example/android",
"android": "expo run:android",
"ios": "expo run:ios"
},
"jest": {
"preset": "expo-module-scripts"
},
"keywords": [
"react-native",
"expo",
"ui-kit",
"ArgoUiKit",
"@argo22",
"@argo22/mobile-ui-kit"
],
"repository": "https://github.com/argo22com/arg-mobile-ui-kit",
"bugs": {
"url": "https://github.com/argo22com/arg-mobile-ui-kit/issues"
},
"author": "Kamony <jirihauser94@gmail.com> (https://github.com/Kamony)",
"license": "MIT",
"homepage": "https://github.com/argo22com/arg-mobile-ui-kit#readme",
"dependencies": {
"@rn-primitives/checkbox": "^1.2.0",
"@rn-primitives/portal": "^1.2.0",
"@rn-primitives/radio-group": "^1.2.0",
"@rn-primitives/select": "^1.2.0",
"@rn-primitives/switch": "^1.2.0",
"@rn-primitives/toast": "^1.2.0",
"lucide-react-native": "^0.453.0"
},
"devDependencies": {
"@types/react": "~18.2.79",
"expo": "^51.0.38",
"expo-module-scripts": "^3.5.2",
"expo-modules-core": "^1.12.19",
"jest": "^29.4.0",
"jest-expo": "~51.0.3",
"react": "18.2.0",
"react-native": "0.74.5",
"react-native-reanimated": "~3.10.1",
"react-native-safe-area-context": "4.12.0",
"react-native-svg": "15.8.0",
"react-native-unistyles": "^2.10.0"
},
"peerDependencies": {
"expo": "*",
"react": "*",
"react-native": "*",
"react-native-reanimated": "*",
"react-native-safe-area-context": "*",
"react-native-svg": "*",
"react-native-unistyles": "*"
}
}