-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.33 KB
/
package.json
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
{
"name": "far-editor",
"version": "0.0.1",
"description": "far代码编辑器",
"main": "out/far/main/index.js",
"private": true,
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "vite",
"build": "tsc && vite build --emptyOutDir && electron-builder"
},
"repository": {
"type": "git",
"url": "https://gitee.com/yu-shengming/far-editor.git"
},
"keywords": [
"editor"
],
"debug": {
"env": {
"VITE_DEV_SERVER_URL": "http://localhost:5173/"
}
},
"author": "darwish",
"license": "MIT",
"devDependencies": {
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"electron": "^34.0.0",
"electron-builder": "^25.1.8",
"postcss": "^8.5.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3",
"vite": "^6.0.7",
"vite-plugin-electron": "^0.29.0",
"vite-plugin-electron-renderer": "^0.14.6",
"vite-plugin-monaco-editor": "^1.1.0",
"vitest": "^3.0.1"
},
"dependencies": {
"@monaco-editor/react": "^4.6.0",
"allotment": "^1.20.2",
"clsx": "^2.1.1",
"electron-log": "^5.2.4",
"monaco-editor": "^0.52.2",
"tailwind-merge": "^2.6.0",
"zustand": "^5.0.3"
}
}