-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.47 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.47 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
{
"name": "ctxrun",
"private": true,
"version": "2.4.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint:rust": "cargo clippy --manifest-path src-tauri/Cargo.toml --workspace --all-targets -- -D warnings",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"deadcode": "knip --use-tsconfig-files --reporter compact",
"deadcode:rust": "cargo machete --with-metadata --skip-target-dir src-tauri",
"preview": "vite preview",
"tauri": "tauri"
},
"dependencies": {
"@lottiefiles/dotlottie-react": "^0.18.10",
"@m-lab/ndt7": "^0.1.4",
"@monaco-editor/react": "^4.7.0",
"@spaceymonk/react-radial-menu": "^2.1.0",
"@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-http": "^2.5.4",
"@tauri-apps/plugin-os": "^2.3.2",
"@tauri-apps/plugin-shell": "^2.3.3",
"@wooorm/starry-night": "^3.9.0",
"@xyflow/react": "^12.10.0",
"clsx": "^2.1.1",
"docx-preview": "^0.3.7",
"framer-motion": "^12.34.1",
"github-markdown-css": "^5.9.0",
"hast-util-to-jsx-runtime": "^2.3.6",
"i18next": "^25.8.10",
"lucide-react": "^0.574.0",
"monaco-editor": "^0.55.1",
"papaparse": "^5.5.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-i18next": "^16.5.4",
"react-icons": "^5.5.0",
"react-markdown": "^10.1.0",
"react-virtualized-auto-sizer": "1.0.26",
"react-virtuoso": "^4.18.1",
"react-window": "1.8.11",
"react-zoom-pan-pinch": "^3.7.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"uuid": "^13.0.0",
"vscode-oniguruma": "^2.0.1",
"xml-formatter": "^3.7.0",
"zustand": "^5.0.11"
},
"devDependencies": {
"@tauri-apps/cli": "^2.9.5",
"@testing-library/react": "^16.3.2",
"@types/node": "^24.10.1",
"@types/papaparse": "^5.5.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-window": "^1.8.8",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/coverage-v8": "^4.0.18",
"autoprefixer": "^10.4.22",
"jsdom": "^28.1.0",
"knip": "^5.87.0",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.17",
"typescript": "^5.9.3",
"vite": "^7.2.4",
"vitest": "^4.0.18"
}
}