-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.1 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
{
"name": "prism-player",
"private": true,
"version": "0.3.0",
"type": "module",
"scripts": {
"dev": "vite --host 127.0.0.1 --port 1420",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"test": "npm run typecheck && npm run lint",
"build": "npm run typecheck && vite build",
"preview": "vite preview",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"tauri:build:app": "tauri build --bundles app",
"tauri:build:installer": "npm run tauri:build:app && ./scripts/package-macos-installer.sh"
},
"dependencies": {
"@radix-ui/react-dropdown-menu": "^2.1.24",
"@tauri-apps/api": "^2.8.0",
"lucide-react": "^1.30.0",
"react": "^19.2.8",
"react-dom": "^19.2.8"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.62.1",
"@tauri-apps/cli": "^2.8.4",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@vitejs/plugin-react": "^6.0.5",
"eslint": "^10.8.0",
"globals": "^17.9.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.66.0",
"vite": "^8.2.1"
}
}