-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.33 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.33 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
{
"name": "dev-cleanup",
"private": true,
"version": "0.4.0",
"type": "module",
"description": "Cross-platform desktop app that reclaims disk space by cleaning developer build artifacts and AI/LLM caches.",
"license": "MIT",
"author": "Max Davydov",
"homepage": "https://github.com/Maks417/DevMachineCleaner#readme",
"repository": {
"type": "git",
"url": "https://github.com/Maks417/DevMachineCleaner.git"
},
"bugs": {
"url": "https://github.com/Maks417/DevMachineCleaner/issues"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2",
"react": "^19.2.7",
"react-dom": "^19.2.7"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.2.16",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/ui": "^4.1.8",
"jsdom": "^29.1.1",
"typescript": "~6.0.3",
"vite": "^8.0.16",
"vitest": "^4.1.8"
}
}