-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
141 lines (141 loc) · 5.73 KB
/
package.json
File metadata and controls
141 lines (141 loc) · 5.73 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "jean",
"private": true,
"version": "0.1.0",
"type": "module",
"author": "Andras Bacsai",
"copyright": "Copyright © 2025 Andras Bacsai. All rights reserved.",
"license": "Apache-2.0",
"scripts": {
"dev": "vite",
"dev:web": "vite build --watch",
"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": "cd src-tauri && cargo fmt",
"rust:fmt:check": "cd src-tauri && cargo fmt --check",
"rust:clippy": "cd src-tauri && cargo clippy -- -D warnings",
"rust:clippy:fix": "cd src-tauri && cargo clippy --fix --allow-dirty",
"rust:test": "cd src-tauri && cargo test",
"tauri": "tauri",
"tauri:dev:rdp": "bash scripts/tauri-dev-rdp.sh",
"tauri:dev": "tauri dev --config src-tauri/tauri.conf.dev.json",
"tauri:build": "npm run tauri build",
"tauri:build:macos": "tauri build --target universal-apple-darwin --bundles app,dmg",
"tauri:build:linux": "tauri build --bundles deb,rpm",
"tauri:build:linux:appimage": "NO_STRIP=true tauri build --bundles appimage 2>&1 || (echo 'AppImage build failed due to Arch Linux .relr.dyn incompatibility. Run manually:' && cd src-tauri/target/release/bundle/appimage && NO_STRIP=1 ~/.cache/tauri/linuxdeploy-x86_64.AppImage --appdir Jean.AppDir --output appimage)",
"tauri:build:windows": "tauri build --bundles msi,nsis",
"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 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"
},
"dependencies": {
"@codemirror/commands": "^6.10.1",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-javascript": "^6.2.4",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-rust": "^6.0.2",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/lang-yaml": "^6.1.2",
"@codemirror/language": "^6.12.1",
"@codemirror/state": "^6.5.4",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.39.11",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@pierre/diffs": "^1.0.4",
"@radix-ui/react-alert-dialog": "^1.1.14",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-radio-group": "^1.3.7",
"@radix-ui/react-scroll-area": "^1.2.9",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-toggle": "^1.1.9",
"@radix-ui/react-toggle-group": "^1.1.10",
"@radix-ui/react-tooltip": "^1.2.7",
"@tailwindcss/vite": "^4.1.11",
"@tanstack/react-query": "^5.83.0",
"@tanstack/react-query-devtools": "^5.83.0",
"@tanstack/react-virtual": "^3.13.18",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-clipboard-manager": "^2.3.0",
"@tauri-apps/plugin-dialog": "^2.3.2",
"@tauri-apps/plugin-fs": "^2.4.1",
"@tauri-apps/plugin-log": "^2.6.0",
"@tauri-apps/plugin-notification": "^2.3.0",
"@tauri-apps/plugin-opener": "^2.4.0",
"@tauri-apps/plugin-process": "^2.3.0",
"@tauri-apps/plugin-updater": "^2.9.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"diff": "^8.0.3",
"lucide-react": "^0.552.0",
"react": "^19.2.0",
"react-day-picker": "^9.8.1",
"react-dom": "^19.2.0",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^3.0.4",
"remark-gfm": "^4.0.1",
"remend": "^1.0.1",
"shiki": "^3.21.0",
"sonner": "^2.0.6",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.11",
"zustand": "^5.0.6"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@tauri-apps/cli": "^2",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/diff": "^7.0.2",
"@types/node": "^24.1.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"@vitejs/plugin-react": "^5.1.0",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.20",
"jsdom": "^27.1.0",
"prettier": "^3.6.2",
"tw-animate-css": "^1.3.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.38.0",
"vite": "^7.2.0",
"vitest": "^4.0.7"
}
}