forked from zabirauf/crosspoint-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 3.22 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 3.22 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
{
"name": "crossink-sync",
"main": "expo-router/entry",
"version": "1.0.0",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"version:bump": "npm version --no-git-tag-version",
"postversion": "node -e \"const fs=require('fs');const p=require('./package.json');const a=JSON.parse(fs.readFileSync('app.json','utf8'));a.expo.version=p.version;fs.writeFileSync('app.json',JSON.stringify(a,null,2)+'\\n')\"",
"release": "./scripts/release.sh",
"release:rc": "./scripts/release-rc.sh",
"test:visual": "maestro test .maestro/flows/ && npx tsx scripts/visual-judge.ts --specs .maestro/visual-tests/ --run-dir test-runs/",
"test:visual:flows": "maestro test .maestro/flows/",
"test:visual:judge": "npx tsx scripts/visual-judge.ts --specs .maestro/visual-tests/ --run-dir test-runs/",
"test:visual:report": "cat test-runs/latest/report.md",
"test:visual:studio": "maestro studio",
"mock-device": "npx tsx scripts/mock-device-server.ts --firmware-version 1.3.0 --http-port 8082 --ws-port 8083 --data-dir test-mock-filesystem",
"build:webview-bundle": "node scripts/bundle-webview-extractor.js",
"test:epub": "npx tsx scripts/epub-test.ts",
"test:epub:unit": "npx tsx scripts/epub-test.ts --unit",
"test:epub:integration": "npx tsx scripts/epub-test.ts --integration",
"test:delete": "npx tsx scripts/delete-protocol-test.ts",
"appstore:screenshots": "node scripts/generate-appstore-screenshots.js"
},
"dependencies": {
"@expo/vector-icons": "^15.0.3",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-navigation/native": "^7.1.8",
"@tamagui/babel-plugin": "^2.0.0-rc.6",
"@tamagui/config": "^2.0.0-rc.6",
"@tamagui/portal": "^2.0.0-rc.6",
"base-64": "^1.0.0",
"expo": "~54.0.33",
"expo-clipboard": "~8.0.8",
"expo-constants": "~18.0.13",
"expo-document-picker": "~14.0.8",
"expo-file-system": "~19.0.21",
"expo-font": "~14.0.11",
"expo-haptics": "~15.0.8",
"expo-image-manipulator": "^14.0.8",
"expo-image-picker": "^17.0.10",
"expo-keep-awake": "~15.0.8",
"expo-linking": "~8.0.11",
"expo-router": "~6.0.23",
"expo-secure-store": "~15.0.8",
"expo-sharing": "~14.0.8",
"expo-splash-screen": "~31.0.13",
"expo-status-bar": "~3.0.9",
"fast-xml-parser": "^5.8.0",
"jszip": "^3.10.1",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-native": "0.81.5",
"react-native-gesture-handler": "~2.28.0",
"react-native-reanimated": "~4.1.1",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0",
"react-native-udp": "^4.1.7",
"react-native-web": "~0.21.0",
"react-native-webview": "13.15.0",
"react-native-worklets": "0.5.1",
"tamagui": "^2.0.0-rc.6",
"upng-js": "^2.1.0",
"zustand": "^5.0.11"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"@types/base-64": "^1.0.2",
"@types/react": "~19.1.0",
"@types/ws": "^8.18.1",
"defuddle": "^0.7.0",
"dompurify": "^3.3.1",
"puppeteer": "^24.38.0",
"react-test-renderer": "19.1.0",
"tsx": "^4.21.0",
"typescript": "~5.9.2",
"yaml": "^2.8.2"
},
"private": true
}