-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.86 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.86 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
{
"name": "devutils",
"version": "1.0.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --fix",
"format:rust": "cd ./src-tauri && cargo fmt && cd ..",
"tauri": "tauri",
"check-types": "concurrently -n transpile,types -c cyan,magenta \"pnpm run check-types:transpile\" \"tsgo -p tsconfig.json\" && rm -rf .swc",
"check-types:transpile": "swc app components hooks lib --out-dir .swc --ignore '**/*.d.ts' --ignore 'node_modules/' --ignore '.next/'",
"prepare": "husky",
"format": "prettier -w --list-different .",
"pre-commit": "pnpm run check-types && pnpm run lint && pnpm run format:rust && pnpm run format",
"clean": "rm -rf .swc .next src-tauri/target",
"knip": "knip"
},
"dependencies": {
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "1.1.11",
"@radix-ui/react-dialog": "1.1.15",
"@radix-ui/react-dropdown-menu": "2.1.16",
"@radix-ui/react-label": "2.1.8",
"@radix-ui/react-progress": "1.1.8",
"@radix-ui/react-radio-group": "1.3.8",
"@radix-ui/react-scroll-area": "1.2.10",
"@radix-ui/react-select": "2.2.6",
"@radix-ui/react-separator": "1.1.8",
"@radix-ui/react-slot": "1.2.4",
"@radix-ui/react-switch": "1.2.6",
"@radix-ui/react-tabs": "1.1.13",
"@radix-ui/react-tooltip": "1.2.8",
"@tauri-apps/api": "^2.9.1",
"@tauri-apps/plugin-dialog": "~2.6.0",
"@tauri-apps/plugin-fs": "^2.4.5",
"@tauri-apps/plugin-process": "^2.3.1",
"@uiw/react-color-sketch": "^2.9.2",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"crypto-js": "^4.2.0",
"figlet": "^1.9.4",
"hash-wasm": "^4.12.0",
"i18next": "^25.7.4",
"i18next-browser-languagedetector": "^8.2.0",
"jose": "^6.1.3",
"jsqr": "^1.4.0",
"lucide-react": "^0.562.0",
"next": "16.1.4",
"next-themes": "^0.4.6",
"normalize-url": "^8.1.1",
"qrcode": "^1.5.4",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-i18next": "^16.5.3",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"zustand": "5.0.10"
},
"devDependencies": {
"@swc/cli": "^0.7.10",
"@swc/core": "^1.15.10",
"@tailwindcss/postcss": "^4.1.18",
"@tauri-apps/cli": "^2.9.6",
"@types/crypto-js": "^4.2.2",
"@types/figlet": "^1.7.0",
"@types/node": "^25.0.9",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"@typescript/native-preview": "7.0.0-dev.20260119.1",
"concurrently": "^9.2.1",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.4",
"eslint-plugin-better-tailwindcss": "^4.0.1",
"husky": "^9.1.7",
"knip": "^5.82.1",
"postcss": "^8.5.6",
"prettier": "^3.8.0",
"tailwindcss": "^4.1.18",
"tw-animate-css": "1.4.0",
"typescript": "^5.9.3"
}
}