-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.83 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.83 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "kudu",
"version": "1.36.0",
"description": "A modern, open-source system cleaner for Windows, macOS, and Linux",
"main": "./out/main/index.js",
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"package": "electron-vite build && electron-builder",
"package:win": "electron-vite build && electron-builder --win",
"package:mac": "electron-vite build && electron-builder --mac",
"package:linux": "electron-vite build && electron-builder --linux",
"package:all": "electron-vite build && electron-builder --win --mac --linux",
"test": "vitest run",
"test:watch": "vitest",
"validate:rules": "npx tsx src/main/rules/validate.ts",
"new-rule": "node scripts/new-rule.js",
"find-cache": "node scripts/find-cache.js",
"preview-rule": "node scripts/preview-rule.js",
"parity-check": "node scripts/parity-check.js",
"catalog": "node scripts/generate-catalog.js",
"translate": "node scripts/translate.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "node scripts/release.js",
"postinstall": "patch-package && electron-rebuild -w better-sqlite3"
},
"keywords": [
"system-cleaner",
"electron",
"windows",
"macos",
"linux",
"optimization"
],
"author": {
"name": "Kudu Contributors",
"email": "kudu@users.noreply.github.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/adventdevinc/kudu.git"
},
"homepage": "https://usekudu.com",
"bugs": {
"url": "https://github.com/adventdevinc/kudu/issues"
},
"devDependencies": {
"@axe-core/react": "^4.11.1",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@electron/rebuild": "^4.0.3",
"@tailwindcss/vite": "^4.2.1",
"@types/better-sqlite3": "^7.6.13",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"ajv": "^8.18.0",
"conventional-changelog-cli": "^5.0.0",
"electron": "^41.1.0",
"electron-builder": "^26.8.1",
"electron-vite": "^5.0.0",
"patch-package": "^8.0.1",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3",
"vite": "^7.3.2",
"vitest": "^4.1.0"
},
"dependencies": {
"@litko/yara-x": "^0.5.0",
"@tanstack/react-table": "^8.21.3",
"better-sqlite3": "^12.8.0",
"clsx": "^2.1.1",
"electron-updater": "^6.8.3",
"framer-motion": "^12.38.0",
"i18next": "^26.0.4",
"lucide-react": "^0.577.0",
"pusher-js": "^8.4.0",
"react-i18next": "^17.0.2",
"react-router-dom": "^7.13.1",
"recharts": "^3.8.1",
"sonner": "^2.0.7",
"systeminformation": "^5.31.4",
"tailwind-merge": "^3.5.0",
"zustand": "^5.0.12"
}
}