forked from tonyantony300/alt-sendme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.23 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.23 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
{
"name": "AltSendme",
"private": true,
"version": "0.2.4",
"type": "module",
"scripts": {
"app:dev": "npx tauri dev",
"app:build": "npx tauri build",
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"release": "node ./scripts/release.js",
"sync-version": "node ./scripts/sync-version.js",
"validate-version": "node ./scripts/validate-version.js",
"lint": "biome lint && tsc --noEmit --skipLibCheck",
"lint:fix": "biome lint --fix",
"format": "biome format --write"
},
"dependencies": {
"@radix-ui/react-alert-dialog": "^1.1.15",
"@tauri-apps/api": "^2.0.0",
"@tauri-apps/cli": "^2.9.6",
"@tauri-apps/plugin-dialog": "^2.0.0",
"@tauri-apps/plugin-opener": "^2.5.2",
"clsx": "^2.1.1",
"framer-motion": "^12.23.24",
"lottie-react": "^2.4.1",
"lucide-react": "^0.292.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.3.8",
"tailwind-merge": "^3.3.1"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@types/node": "^20.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.0.0",
"postcss": "^8.0.0",
"tailwindcss": "^3.3.0",
"typescript": "^5.0.0",
"vite": "^4.4.0"
}
}