-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 4.93 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 4.93 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "tauri-app",
"private": true,
"version": "0.1.0",
"type": "module",
"author": "Danny Smith",
"copyright": "Copyright © 2025 Danny Smith. All rights reserved.",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"rust:fmt": "[ -f \"$HOME/.cargo/env\" ] && . \"$HOME/.cargo/env\"; cd src-tauri && cargo fmt",
"rust:fmt:check": "[ -f \"$HOME/.cargo/env\" ] && . \"$HOME/.cargo/env\"; cd src-tauri && cargo fmt --check",
"rust:clippy": "[ -f \"$HOME/.cargo/env\" ] && . \"$HOME/.cargo/env\"; cd src-tauri && cargo clippy -- -D warnings",
"rust:clippy:fix": "[ -f \"$HOME/.cargo/env\" ] && . \"$HOME/.cargo/env\"; cd src-tauri && cargo clippy --fix --allow-dirty",
"rust:test": "[ -f \"$HOME/.cargo/env\" ] && . \"$HOME/.cargo/env\"; cd src-tauri && cargo test",
"rust:bindings": "[ -f \"$HOME/.cargo/env\" ] && . \"$HOME/.cargo/env\"; cd src-tauri && cargo test export_bindings -- --ignored --nocapture",
"tauri": "tauri",
"tauri:dev": "[ -f \"$HOME/.cargo/env\" ] && . \"$HOME/.cargo/env\"; npm run tauri dev",
"tauri:build": "npm run tauri build",
"tauri:check": "npm run typecheck && npm run tauri build --check",
"test:all": "npm run test:run && npm run rust:test",
"check:all": "npm run typecheck && npm run lint && npm run ast:lint && npm run format:check && npm run rust:fmt:check && npm run rust:clippy && npm run test:run && npm run rust:test",
"fix:all": "npm run lint:fix && npm run format && npm run rust:fmt && npm run rust:clippy:fix",
"build:analyze": "vite build && echo '\\n📊 Bundle analysis complete. Check dist/ folder sizes or use a tool like webpack-bundle-analyzer on the dist folder.'",
"release:prepare": "node scripts/prepare-release.js",
"task:complete": "node scripts/complete-task.js",
"task:rename-done": "node scripts/complete-task.js --rename-existing",
"knip": "knip",
"jscpd": "jscpd",
"ast:lint": "ast-grep scan",
"ast:fix": "ast-grep scan --fix"
},
"dependencies": {
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-checkbox": "^1.3.3",
"@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-popover": "^1.1.15",
"@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-toggle": "^1.1.10",
"@radix-ui/react-toggle-group": "^1.1.11",
"@radix-ui/react-tooltip": "^1.2.8",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/react-query": "^5.90.12",
"@tanstack/react-query-devtools": "^5.91.1",
"@tauri-apps/api": "^2.9.1",
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
"@tauri-apps/plugin-dialog": "^2.4.2",
"@tauri-apps/plugin-fs": "^2.4.4",
"@tauri-apps/plugin-log": "^2.7.1",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-opener": "^2.5.2",
"@tauri-apps/plugin-os": "^2.3.2",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-updater": "^2.9.0",
"@tauri-apps/plugin-window-state": "^2.4.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"i18next": "^25.7.3",
"lucide-react": "^0.561.0",
"react": "^19.2.3",
"react-day-picker": "^9.12.0",
"react-dom": "^19.2.3",
"react-i18next": "^16.5.0",
"react-resizable-panels": "^3.0.6",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"zustand": "^5.0.9"
},
"devDependencies": {
"@ast-grep/cli": "^0.40.3",
"@eslint/js": "^9.39.2",
"@tauri-apps/cli": "^2.9.6",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.0.2",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "^4.0.15",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-compiler": "^19.1.0-rc.2",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.25",
"jscpd": "^4.0.5",
"jsdom": "^27.3.0",
"knip": "^5.73.4",
"prettier": "^3.7.4",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.49.0",
"vite": "^7.3.0",
"vitest": "^4.0.15"
}
}