-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.61 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
{
"name": "figy-term",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"postinstall": "node scripts/copy-excalidraw-assets.mjs",
"predev": "node scripts/copy-excalidraw-assets.mjs",
"prebuild": "node scripts/copy-excalidraw-assets.mjs",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "node scripts/run-ts-tests.mjs",
"tauri": "tauri"
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.3",
"@codemirror/commands": "^6.11.0",
"@codemirror/lang-cpp": "^6.0.3",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-go": "^6.0.1",
"@codemirror/lang-html": "^6.4.12",
"@codemirror/lang-java": "^6.0.2",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.2",
"@codemirror/lang-php": "^6.0.2",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-rust": "^6.0.2",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/lang-xml": "^6.1.0",
"@codemirror/lang-yaml": "^6.1.3",
"@codemirror/language": "^6.12.4",
"@codemirror/legacy-modes": "^6.5.4",
"@codemirror/lint": "^6.9.7",
"@codemirror/search": "^6.7.2",
"@codemirror/state": "^6.7.4",
"@codemirror/view": "^6.43.11",
"@excalidraw/excalidraw": "^0.18.1",
"@floating-ui/dom": "^1.8.0",
"@headlessui/react": "^2.2.10",
"@lexical/code": "^0.50.0",
"@lexical/link": "^0.50.0",
"@lexical/list": "^0.50.0",
"@lexical/markdown": "^0.50.0",
"@lexical/react": "^0.50.0",
"@lexical/rich-text": "^0.50.0",
"@lexical/selection": "^0.50.0",
"@lexical/table": "^0.50.0",
"@lexical/utils": "^0.50.0",
"@lezer/highlight": "^1.2.3",
"@tauri-apps/api": "^2.0.0",
"@tauri-apps/plugin-dialog": "^2.7.3",
"@tauri-apps/plugin-shell": "^2.0.0",
"@tauri-apps/plugin-updater": "^2.11.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-search": "^0.16.0",
"@xterm/addon-unicode11": "^0.9.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/xterm": "^5.5.0",
"apexcharts": "^7.0.0",
"lexical": "^0.50.0",
"lucide-react": "^1.30.0",
"react": "^18.3.1",
"react-apexcharts": "^2.1.1",
"react-dom": "^18.3.1",
"react-resizable-panels": "^4.12.2",
"xterm": "^5.3.0",
"zustand": "^4.5.0"
},
"devDependencies": {
"@tauri-apps/cli": "^2.0.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.0",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.0",
"vite": "^5.3.0"
}
}