-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.12 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.12 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
{
"name": "mxu",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,css,json}\" \"*.{json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,css,json}\" \"*.{json,md}\"",
"format:rust": "cd src-tauri && cargo fmt",
"format:all": "pnpm format && pnpm format:rust",
"prepare": "husky"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@radix-ui/react-tooltip": "^1.2.8",
"@tailwindcss/vite": "^4.1.18",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-autostart": "^2.5.1",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-fs": "^2.4.5",
"@tauri-apps/plugin-global-shortcut": "^2.3.1",
"@tauri-apps/plugin-http": "^2",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-process": "^2",
"clsx": "^2.1.1",
"dompurify": "^3.3.1",
"driver.js": "^1.4.0",
"i18next": "^25.7.4",
"jsonc-parser": "^3.3.1",
"loglevel": "^1.9.2",
"lucide-react": "^0.562.0",
"marked": "^17.0.1",
"react": "^19.1.0",
"react-colorful": "^5.6.1",
"react-dom": "^19.1.0",
"react-i18next": "^16.5.3",
"semver": "^7.7.3",
"sonner": "^2.0.7",
"tailwindcss": "^4.1.18",
"zustand": "^5.0.10"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/semver": "^7.7.1",
"@vitejs/plugin-react": "^4.6.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.5.3",
"typescript": "~5.8.3",
"vite": "^7.0.4"
},
"packageManager": "pnpm@10.28.0+sha512.05df71d1421f21399e053fde567cea34d446fa02c76571441bfc1c7956e98e363088982d940465fd34480d4d90a0668bc12362f8aa88000a64e83d0b0e47be48",
"lint-staged": {
"src/**/*.{ts,tsx,js,jsx,css,json}": "prettier --write",
"*.{json,md}": "prettier --write",
"src-tauri/src/**/*.rs": "cargo fmt --manifest-path src-tauri/Cargo.toml --"
}
}