-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 4.25 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 4.25 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
{
"name": "free-grind",
"version": "0.5.3",
"license": "Personal Use License",
"author": "Jay Brammeld <jay@imaoreo.dev> (https://imaoreo.dev)",
"type": "module",
"scripts": {
"docs": "bun run --cwd docs start",
"build": "vite build",
"ota": "bun run scripts/publish-ota.mjs",
"dev": "bun run dev:desktop",
"exe-manager": "powershell -ExecutionPolicy Bypass -File \"./tools/exe-manager/ExeManager.ps1\"",
"dev:web": "vite dev",
"dev:desktop": "sh scripts/dev-desktop.sh",
"dev:ios": "sh scripts/dev-ios.sh",
"dev:android": "sh scripts/dev-android.sh",
"build:android:apk": "sh scripts/build-android-apk.sh",
"build:ios:ipa": "sh scripts/build-ios-ipa.sh",
"logs:push": "sh -c \"PKG=dev.estopia.free_grind; PID=$(adb shell pidof -s $PKG 2>/dev/null | tr -d '\\r\\n'); if [ -n \\\"$PID\\\" ]; then echo 'Using PID:' $PID; adb logcat -v time --pid=$PID | grep --line-buffered -E 'FCM|PUSH_SYNC|Tauri/Notification|gcm-push-tokens|sync_push_token'; else echo 'PID not found, using global filtered logs'; adb logcat -v time | grep --line-buffered -E 'FCM|PUSH_SYNC|Tauri/Notification|gcm-push-tokens|sync_push_token|dev.estopia.free_grind'; fi\"",
"logs:push:save": "sh scripts/capture-push-logs.sh filtered logs/android",
"logs:push:save:raw": "sh scripts/capture-push-logs.sh raw logs/android",
"logs:push:raw": "sh -c \"PKG=dev.estopia.free_grind; PID=$(adb shell pidof -s $PKG 2>/dev/null | tr -d '\\r\\n'); if [ -n \\\"$PID\\\" ]; then echo 'Using PID:' $PID; adb logcat -v time --pid=$PID; else echo 'PID not found, using global app grep'; adb logcat -v time | grep --line-buffered 'dev.estopia.free_grind'; fi\"",
"logs:push:global": "adb logcat -v time | grep --line-buffered -E 'FCM|PUSH_SYNC|Tauri/Notification|gcm-push-tokens|sync_push_token|dev.estopia.free_grind'",
"logs:clear": "adb logcat -c",
"preview": "vite preview",
"tauri": "sh scripts/tauri.sh",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@gbyte/tauri-plugin-ios-photos": "^0.3.0",
"@msgpack/msgpack": "^3.1.3",
"@radix-ui/react-tabs": "^1.1.13",
"@tailwindcss/vite": "^4.2.2",
"@tanstack/react-query": "^5.100.14",
"@tanstack/react-virtual": "^3.14.5",
"@tauri-apps/api": "2.10.1",
"@tauri-apps/plugin-fs": "~2",
"@tauri-apps/plugin-geolocation": "~2",
"@tauri-apps/plugin-http": "^2.5.9",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-opener": "^2.5.4",
"@tauri-apps/plugin-os": "~2",
"@tauri-apps/plugin-sql": "^2",
"agora-rtc-sdk-ng": "^4.23.1",
"copy-to-clipboard": "^3.3.3",
"i18next": "^26.0.8",
"i18next-browser-languagedetector": "^8.2.1",
"i18next-http-backend": "^3.0.6",
"lenis": "^1.3.23",
"maplibre-gl": "^5.24.0",
"react": "^19",
"react-dom": "^19",
"react-hot-toast": "^2.4.1",
"react-i18next": "^17.0.6",
"react-image-crop": "^11.0.10",
"react-router-dom": "^7",
"tailwindcss": "^4.2.2",
"tauri-plugin-android-fs-api": "28.2.2",
"tauri-plugin-hotswap-api": "^0.0.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@csstools/postcss-cascade-layers": "^6.0.0",
"@eslint/js": "^10.0.1",
"@fontsource-variable/ibm-plex-sans": "^5.2.8",
"@internationalized/date": "^3.12.0",
"@tailwindcss/postcss": "^4.2.4",
"@tauri-apps/cli": "2.10.1",
"@total-typescript/ts-reset": "^0.6.1",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^4.2.1",
"clsx": "^2.1.1",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0",
"lucide-react": "^1.14.0",
"prettier": "^3.8.1",
"prettier-plugin-rust": "^0.1.9",
"shadcn-ui": "^0.8.0",
"tailwind-merge": "^3.5.0",
"tailwind-variants": "^3.2.2",
"typescript": "^6",
"typescript-eslint": "^8.57.0",
"vite": "^6.0.3"
}
}