-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.12 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
{
"name": "cleanerx",
"private": true,
"version": "0.1.0",
"author": "BeaCox",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"build:app": "tauri build --bundles app",
"build:dmg": "tauri build --bundles dmg",
"build:bundles": "tauri build --bundles app,dmg",
"build:linux": "tauri build --bundles deb,appimage",
"build:windows": "tauri build --bundles nsis,msi",
"test": "vitest run",
"test:watch": "vitest",
"tauri": "tauri"
},
"dependencies": {
"@tanstack/react-table": "9.1.2",
"@tauri-apps/api": "2.11.1",
"i18next": "26.4.0",
"lucide-react": "1.34.0",
"react": "19.2.8",
"react-dom": "19.2.8",
"react-i18next": "17.0.12"
},
"devDependencies": {
"@tauri-apps/cli": "2.11.4",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.1.0",
"esbuild": "^0.28.2",
"jsdom": "26.1.0",
"typescript": "7.0.2",
"vite": "8.2.2",
"vitest": "4.1.11"
},
"packageManager": "pnpm@11.3.0"
}