-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.84 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.84 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
91
92
93
94
{
"name": "nvm-desktop",
"private": true,
"version": "4.3.3",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "tauri dev",
"build": "tauri build",
"build:verbose": "tauri build --verbose",
"tauri": "tauri",
"ui:dev": "vite",
"ui:build": "tsc && vite build",
"ui:preview": "vite preview",
"check": "node scripts/check.mjs",
"updater": "node scripts/updater.mjs",
"updater-fixed-webview2": "node scripts/updater-fixed-webview2.mjs",
"generate:themes": "node scripts/theme-generator.mjs",
"oxlint": "oxlint src scripts --type-aware",
"oxlint:fix": "oxlint src scripts --fix",
"type-check": "tsc --noEmit -p tsconfig.app.json",
"format:check": "oxfmt --check src",
"format:write": "oxfmt --write src",
"prepare": "husky"
},
"dependencies": {
"@base-ui/react": "^1.5.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@hookform/resolvers": "^5.4.0",
"@tanstack/react-table": "^8.21.3",
"@tanstack/react-virtual": "^3.14.2",
"@tauri-apps/api": "2.11.0",
"@tauri-apps/plugin-dialog": "2.7.1",
"@tauri-apps/plugin-shell": "2.3.5",
"@tauri-apps/plugin-updater": "2.10.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"dayjs": "^1.11.21",
"i18next": "26.3.1",
"intro.js": "^8.3.2",
"lodash": "^4.18.1",
"lucide-react": "1.18.0",
"motion": "12.40.0",
"radix-ui": "^1.5.0",
"react": "19.2.7",
"react-circular-progressbar": "^2.2.0",
"react-dom": "19.2.7",
"react-hook-form": "^7.79.0",
"react-i18next": "^17.0.8",
"react-markdown": "^10.1.0",
"react-router": "^7.17.0",
"semver": "^7.8.4",
"shadcn": "4.11.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0",
"zod": "^4.4.3",
"zod-validation-error": "^5.0.0"
},
"devDependencies": {
"@actions/github": "9.1.1",
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@commitlint/types": "^21.0.1",
"@rolldown/plugin-babel": "^0.2.3",
"@tailwindcss/vite": "^4.3.1",
"@tauri-apps/cli": "2.11.2",
"@types/babel__core": "^7.20.5",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.17.24",
"@types/node": "25.9.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/semver": "^7.7.1",
"@vitejs/plugin-react": "^6.0.2",
"babel-plugin-react-compiler": "^1.0.0",
"fs-extra": "^11.3.5",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"oxfmt": "^0.54.0",
"oxlint": "^1.69.0",
"oxlint-tsgolint": "^0.23.0",
"tailwindcss": "^4.3.1",
"typescript": "^6.0.3",
"undici": "8.4.1",
"vite": "8.0.16",
"vite-plugin-html": "^3.2.2"
},
"packageManager": "pnpm@11.6.0"
}