-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.62 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
51
52
53
54
55
{
"name": "dev-janitor-v2",
"description": "Cross-platform desktop application for cleaning development artifacts and managing local developer tools.",
"private": true,
"author": "cocojojo5213",
"license": "MIT",
"version": "2.4.3",
"packageManager": "pnpm@11.5.0",
"homepage": "https://github.com/cocojojo5213/Dev-Janitor",
"repository": {
"type": "git",
"url": "https://github.com/cocojojo5213/Dev-Janitor.git"
},
"bugs": {
"url": "https://github.com/cocojojo5213/Dev-Janitor/issues"
},
"engines": {
"node": ">=24 <25",
"pnpm": ">=11.5.0"
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "tsc --noEmit",
"validate:release": "node scripts/validate-release-version.mjs",
"validate:artifacts": "node scripts/validate-release-artifacts.mjs",
"tauri": "tauri"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@tauri-apps/api": "2.11.0",
"@tauri-apps/plugin-opener": "^2.5.4",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-updater": "^2.10.1",
"i18next": "^26.3.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-i18next": "^17.0.8",
"zustand": "^5.0.14"
},
"devDependencies": {
"@tauri-apps/cli": "^2.11.2",
"@types/react": "^19.2.16",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"typescript": "~6.0.3",
"vite": "^8.0.16"
}
}