-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.39 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.39 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
{
"name": "electron-vite-react",
"version": "2.2.0",
"main": "dist-electron/main/index.js",
"description": "Hybrid Electron/Web React Application.",
"author": "草鞋没号 <308487730@qq.com>",
"license": "MIT",
"private": true,
"debug": {
"env": {
"VITE_DEV_SERVER_URL": "http://127.0.0.1:7777/"
}
},
"type": "module",
"scripts": {
"dev": "vite --mode electron",
"dev:web": "vite --port 8080 --mode web",
"dev:electron": "vite --mode electron",
"build": "tsc && vite build --mode web",
"build:web": "tsc && vite build --mode web",
"build:electron": "tsc && vite build --mode electron && electron-builder",
"preview": "vite preview --port 8080 --mode web",
"preview:web": "vite preview --port 8080 --mode web",
"pretest": "vite build --mode=test",
"test": "vitest run"
},
"dependencies": {
"@ant-design/pro-components": "^2.8.10",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-slot": "^1.2.3",
"@tabler/icons-react": "^3.35.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@uiw/react-textarea-code-editor": "^3.1.1",
"antd": "^5.26.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"electron-updater": "^6.3.9",
"github-markdown-css": "^5.8.1",
"katex": "^0.16.22",
"lodash": "^4.17.21",
"lucide-react": "^0.544.0",
"react-katex": "^3.1.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^15.6.1",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"remark-breaks": "^4.0.0",
"remark-emoji": "^5.0.2",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"tailwind-merge": "^3.3.1",
"zustand": "^5.0.8"
},
"devDependencies": {
"@playwright/test": "^1.48.2",
"@types/katex": "^0.16.7",
"@types/lodash": "^4.17.20",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-katex": "^3.0.4",
"@vitejs/plugin-react": "^4.3.3",
"autoprefixer": "^10.4.20",
"electron": "^33.2.0",
"electron-builder": "^24.13.3",
"postcss": "^8.4.49",
"postcss-import": "^16.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^3.4.15",
"tailwindcss-animate": "^1.0.7",
"tw-animate-css": "^1.4.0",
"typescript": "^5.4.2",
"vite": "^5.4.11",
"vite-plugin-electron": "^0.29.0",
"vite-plugin-electron-renderer": "^0.14.6",
"vitest": "^2.1.5"
}
}