-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.91 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
{
"name": "OpenSend",
"version": "0.9.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"cap:sync": "npx cap sync",
"cap:copy": "npx cap copy",
"cap:open:android": "npx cap open android",
"android:build": "bash scripts/capacitor-build.sh",
"android:release": "CAPACITOR_BUILD=true next build && npx cap copy android && cd android && ./gradlew bundleRelease",
"android:icons": "node scripts/generate-android-icons.js",
"desktop:install": "cd apps/desktop && npm install",
"desktop:icons": "node scripts/generate-win-icon.js",
"desktop:build": "npm run build && cd apps/desktop && npx electron-builder --win --x64",
"desktop:start": "cd apps/desktop && electron .",
"desktop:icons:all": "node scripts/generate-win-icon.js && node scripts/generate-store-assets.js"
},
"dependencies": {
"@capacitor/android": "^8.4.1",
"@capacitor/app": "^8.1.0",
"@capacitor/browser": "^8.0.3",
"@capacitor/cli": "^8.4.1",
"@capacitor/core": "^8.4.1",
"@capacitor/filesystem": "^8.1.2",
"@capacitor/keyboard": "^8.0.5",
"@capacitor/preferences": "^8.0.1",
"@capacitor/share": "^8.0.1",
"@capacitor/splash-screen": "^8.0.1",
"@capacitor/status-bar": "^8.0.2",
"@modelcontextprotocol/sdk": "^1.29.0",
"@supabase/ssr": "^0.6.0",
"@supabase/supabase-js": "^2.107.0",
"clsx": "^2.1.0",
"lucide-react": "^0.400.0",
"next": "^15",
"qrcode": "^1.5.4",
"react": "^19",
"react-dom": "^19",
"tailwind-merge": "^2.6.0",
"uuid": "^11.0.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^22",
"@types/qrcode": "^1.5.6",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "^15",
"tailwindcss": "^4",
"typescript": "^5"
}
}