-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.82 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.82 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
{
"name": "fanguard",
"version": "0.1.0-beta.2",
"private": true,
"description": "FanGuard — macOS fan control application built with Tauri v2 and Svelte 5",
"author": "naufaldi",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/naufaldi/mac-fan-ctrl.git"
},
"homepage": "https://github.com/naufaldi/mac-fan-ctrl",
"bugs": {
"url": "https://github.com/naufaldi/mac-fan-ctrl/issues"
},
"keywords": [
"macos",
"fan-control",
"smc",
"tauri",
"temperature-monitor",
"apple-silicon",
"rust",
"svelte"
],
"type": "module",
"scripts": {
"dev": "vite",
"dev:prepare-helper": "\"$HOME/.cargo/bin/cargo\" build --manifest-path src-tauri/Cargo.toml --bin fanguard-helper",
"build": "vite build",
"preview": "vite preview",
"tauri": "tauri",
"biome:check": "biome check . --linter-enabled=true --formatter-enabled=false",
"biome:format": "biome check . --formatter-enabled=true --linter-enabled=false",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"playwright:test": "playwright test"
},
"dependencies": {
"@tauri-apps/api": "2.10.1",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-updater": "^2.10.0",
"clsx": "^2.1.1",
"lucide-svelte": "^0.577.0",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.5",
"@playwright/test": "1.54.2",
"@sveltejs/vite-plugin-svelte": "6.2.4",
"@tailwindcss/vite": "^4.2.1",
"@tauri-apps/cli": "2.10.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/svelte": "5.3.1",
"@testing-library/user-event": "14.5.2",
"@types/node": "22.10.2",
"happy-dom": "15.7.3",
"jsdom": "26.1.0",
"svelte": "5.53.7",
"svelte-check": "4.4.4",
"tailwindcss": "^4.2.1",
"typescript": "5.9.3",
"vite": "6.3.0",
"vitest": "4.1.0-beta.5"
}
}