-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.79 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
{
"name": "diskhound",
"private": true,
"type": "module",
"version": "0.5.44",
"description": "Fast disk space analyzer — find and clean up large files",
"author": "DiskHound",
"homepage": "https://github.com/tzarebczan/diskhound",
"repository": {
"type": "git",
"url": "https://github.com/tzarebczan/diskhound.git"
},
"main": "dist-electron/main.cjs",
"packageManager": "bun@1.3.11",
"scripts": {
"dev": "bun run scripts/dev.mjs",
"dev:renderer": "vite --strictPort --host 127.0.0.1 --port 4310",
"dev:electron:bundle": "tsdown --watch",
"dev:electron": "bun run scripts/dev-electron.mjs",
"build:icons": "node scripts/generate-icon.mjs",
"build": "bun run build:icons && bun run build:renderer && bun run build:electron",
"build:native": "cargo build --release --manifest-path native/diskhound-native-scanner/Cargo.toml",
"build:native:debug": "cargo build --manifest-path native/diskhound-native-scanner/Cargo.toml",
"bench:scan": "node scripts/benchmark-scan.mjs",
"build:renderer": "vite build",
"build:electron": "tsdown",
"sync:version-from-tag": "node scripts/sync-version-from-tag.mjs",
"start": "bun run scripts/start-electron.mjs",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"dist": "bun run build:native && bun run build && electron-builder --config electron-builder.yml"
},
"dependencies": {
"blake2": "^5.0.1",
"electron-updater": "^6.6.2",
"preact": "^10.26.9"
},
"devDependencies": {
"@preact/preset-vite": "^2.10.2",
"@types/node": "^24.12.0",
"electron": "40.6.0",
"electron-builder": "^26.0.12",
"vitest": "^3.2.1",
"tsdown": "^0.20.3",
"typescript": "^5.7.3",
"vite": "^7.1.12",
"wait-on": "^8.0.2"
},
"trustedDependencies": [
"blake2"
]
}