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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
{
"name": "@karakeep/mobile",
"version": "1.0.0",
"main": "index.ts",
"scripts": {
"clean": "git clean -xdf .expo .turbo node_modules",
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"format": "prettier . --cache --check",
"format:fix": "prettier . --cache --write",
"lint": "oxlint .",
"lint:fix": "oxlint . --fix",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@expo/metro-runtime": "~6.1.2",
"@karakeep/shared": "workspace:^0.1.0",
"@karakeep/shared-react": "workspace:^0.1.0",
"@karakeep/trpc": "workspace:^0.1.0",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-native-menu/menu": "^2.0.0",
"@react-navigation/native": "^7.1.8",
"@rn-primitives/hooks": "^1.3.0",
"@rn-primitives/slot": "^1.2.0",
"@shopify/flash-list": "2.0.2",
"@tanstack/react-query": "5.90.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"expo": "~54.0.31",
"expo-build-properties": "~1.0.10",
"expo-checkbox": "~5.0.8",
"expo-clipboard": "~8.0.8",
"expo-constants": "~18.0.13",
"expo-dev-client": "~6.0.20",
"expo-file-system": "~19.0.21",
"expo-haptics": "~15.0.8",
"expo-image": "~3.0.11",
"expo-image-picker": "~17.0.10",
"expo-linking": "~8.0.11",
"expo-navigation-bar": "~5.0.10",
"expo-router": "~6.0.21",
"expo-secure-store": "~15.0.8",
"expo-share-intent": "^5.1.1",
"expo-sharing": "~14.0.8",
"expo-status-bar": "~3.0.9",
"expo-system-ui": "~6.0.9",
"expo-web-browser": "~15.0.10",
"lucide-react-native": "^0.513.0",
"nativewind": "^4.2.1",
"react": "^19.2.1",
"react-native": "0.81.5",
"react-native-awesome-slider": "^2.5.3",
"react-native-blob-util": "^0.21.2",
"react-native-css-interop": "0.2.1",
"react-native-gesture-handler": "~2.28.0",
"react-native-image-viewing": "^0.2.2",
"react-native-keyboard-controller": "^1.18.5",
"react-native-markdown-display": "^7.0.2",
"react-native-pdf": "7.0.3",
"react-native-reanimated": "~4.1.1",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0",
"react-native-svg": "15.12.1",
"react-native-webview": "13.15.0",
"react-native-worklets": "0.5.1",
"sonner-native": "^0.22.2",
"tailwind-merge": "^2.2.1",
"zod": "^3.24.2",
"zustand": "^5.0.5"
},
"devDependencies": {
"@babel/core": "~7.26.0",
"@karakeep/prettier-config": "workspace:^0.1.0",
"@karakeep/tailwind-config": "workspace:^0.1.0",
"@karakeep/tsconfig": "workspace:^0.1.0",
"@types/react": "^19.1.6",
"ajv": "latest",
"prettier": "^3.4.2",
"tailwindcss": "^3.4.1",
"typescript": "^5.9"
},
"private": true,
"prettier": "@karakeep/prettier-config"
}
|