-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.41 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.41 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
{
"name": "launchpad",
"private": true,
"version": "0.8.3",
"type": "module",
"description": "macOS Launchpad recreation - Full-screen app launcher with folders and custom organization",
"author": "Launchpad Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/erimeilis/launchpad"
},
"homepage": "https://github.com/erimeilis/launchpad",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"clean": "killall launchpad 2>/dev/null || true; lsof -ti:1420 | xargs kill -9 2>/dev/null || true",
"tauri": "npm run clean && tauri",
"tauri:build": "npm run clean && tauri build && node scripts/copy-build.js",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css}\""
},
"dependencies": {
"@phosphor-icons/react": "^2.1.10",
"@tailwindcss/vite": "^4.1.17",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-opener": "^2",
"i18next": "^25.6.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-i18next": "^16.3.5"
},
"devDependencies": {
"@phosphor-icons/core": "^2.1.1",
"@tauri-apps/cli": "^2",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^5.1.4",
"prettier": "^3.6.2",
"tailwindcss": "^4.0.0",
"typescript": "^5.9.3",
"vite": "^7.0.4"
}
}