-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 5.6 KB
/
Copy pathpackage.json
File metadata and controls
134 lines (134 loc) · 5.6 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "vescape",
"version": "0.92.1",
"private": true,
"license": "GPL-3.0-or-later",
"author": "Kacper Kozak",
"workspaces": [
"modules/*"
],
"main": "expo-router/entry",
"scripts": {
"start": "expo start",
"postinstall": "bun run release-notes:build && bun run theme:android && bun run copy:shared",
"prebuild": "expo prebuild",
"native:sync": "bun run scripts/native-sync.ts",
"theme:android": "bun run scripts/generate-android-theme.ts",
"theme:android:check": "bun run scripts/generate-android-theme.ts --check",
"android": "bun run scripts/android.ts",
"android:emulator": "bun run scripts/android-emulator.ts",
"android:release": "bun run scripts/android.ts --variant release --no-bundler",
"android:e2e": "EXPO_PUBLIC_E2E=1 bun run android",
"ios": "bun run native:sync ios && expo run:ios --device",
"wear:build": "bun run scripts/wear.ts build",
"wear:test": "bun run scripts/wear.ts test",
"wear": "bun run scripts/wear.ts install",
"wear:fixtures": "bun run scripts/generate-watch-fixtures.ts",
"icons:port": "bun run scripts/phosphor-to-vector.ts",
"wear:emulator": "bun run scripts/wear.ts emulator",
"wear:pair": "bun run scripts/wear.ts pair",
"wear:replay": "bun run scripts/wear.ts replay",
"relay:reverse": "bun run scripts/relay-reverse.ts",
"lint": "oxlint --type-aware src",
"format": "oxfmt . '!.agents/skills/**'",
"format:check": "oxfmt --check . '!.agents/skills/**'",
"clear": "bun run scripts/clear.ts",
"copy:shared": "bun run scripts/copy-shared.ts",
"skills-check": "bun run scripts/skills-check.ts",
"ss": "bun run scripts/screenshot.ts",
"e2e": "bun run scripts/e2e.ts",
"screenshots": "bun run scripts/screenshots.ts",
"smoke": "bun run scripts/smoke.ts",
"perf": "bun run scripts/perf-telemetry.ts",
"test": "bun run theme:android && bun run copy:shared && bun run test:bun && bun run test:android && bun run test:ios",
"test:ci": "bun run theme:android && bun run copy:shared && bun run test:bun && bun run test:android",
"test:bun": "bun test",
"test:android": "export NODE_BINARY=$(command -v node); export PATH=$(dirname \"$NODE_BINARY\"):$PATH; cd android && ./gradlew :vescape-core:testDebugUnitTest",
"test:ios": "bun run scripts/test-ios.ts",
"test:persistence": "bun run scripts/test-persistence.ts",
"test:persistence:android": "./modules/vescape-core/persistence-jvm/gradlew -p modules/vescape-core/persistence-jvm test",
"test:persistence:ios": "cd modules/vescape-core && swift run RecordingPersistenceHost",
"ts": "tsc --noEmit",
"build:release": "bun run theme:android && bun run copy:shared && export NODE_BINARY=$(command -v node); export PATH=$(dirname \"$NODE_BINARY\"):$PATH; export EXPO_PUBLIC_SERVER_URL=https://api.vescape.app; cd android && ./gradlew assembleRelease",
"release": "bun run scripts/release.ts",
"release-notes:author": "bun run scripts/release-notes/author.ts",
"release-notes:build": "bun run scripts/release-notes/generate.ts",
"release-notes:check": "bun run scripts/release-notes/generate.ts --check",
"check": "bun run release-notes:check && bun run theme:android:check && bun run ts && bun run lint && bun run format:check && bun run knip && bun run test",
"check:ci": "bun run release-notes:check && bun run theme:android:check && bun run ts && bun run lint && bun run format:check && bun run knip && bun run test:ci",
"knip": "knip"
},
"dependencies": {
"@bacons/apple-targets": "^4.0.7",
"@clerk/expo": "^3.7.8",
"@rnmapbox/maps": "^10.3.2",
"@sentry/react-native": "~7.11.0",
"@shopify/react-native-skia": "2.9.0",
"dequal": "^2.0.3",
"expo": "~57.0.12",
"expo-build-properties": "~57.0.10",
"expo-constants": "~57.0.10",
"expo-dev-client": "~57.0.11",
"expo-document-picker": "~57.0.1",
"expo-file-system": "~57.0.2",
"expo-haptics": "~57.0.1",
"expo-image": "~57.0.2",
"expo-image-picker": "~57.0.9",
"expo-linking": "~57.0.5",
"expo-network": "~57.0.1",
"expo-router": "~57.0.12",
"expo-secure-store": "~57.0.1",
"expo-sensors": "~57.0.2",
"expo-sharing": "~57.0.11",
"expo-splash-screen": "~57.0.6",
"expo-status-bar": "~57.0.1",
"expo-system-ui": "~57.0.2",
"expo-updates": "~57.0.13",
"expo-video": "~57.0.2",
"ink": "^7.1.1",
"markdown-it": "^14.3.0",
"phosphor-react-native": "^3.0.6",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-native": "0.86.2",
"react-native-gesture-handler": "~2.32.0",
"react-native-reanimated": "4.5.1",
"react-native-safe-area-context": "5.8.0",
"react-native-screens": "~4.26.0",
"react-native-svg": "15.15.5",
"react-native-web": "~0.21.2",
"react-native-worklets": "0.10.1",
"vescape-core": "workspace:*",
"zustand": "5.0.14"
},
"devDependencies": {
"@phosphor-icons/core": "^2.1.1",
"@types/markdown-it": "^14.1.2",
"@types/node": "^26.2.0",
"@types/react": "19.2.18",
"bun-types": "1.3.14",
"knip": "^6.32.1",
"lefthook": "^2.1.10",
"oxfmt": "^0.59.0",
"oxlint": "^1.78.0",
"oxlint-tsgolint": "^7.0.2001",
"sharp": "^0.35.3",
"typescript": "^6"
},
"expo": {
"install": {
"exclude": [
"@shopify/react-native-skia",
"react-native-safe-area-context",
"react-native-svg"
]
}
},
"patchedDependencies": {
"@bacons/apple-targets@4.0.7": "patches/@bacons%2Fapple-targets@4.0.7.patch",
"@rnmapbox/maps@10.3.2": "patches/@rnmapbox%2Fmaps@10.3.2.patch"
},
"trustedDependencies": [
"@shopify/react-native-skia"
]
}