-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.14 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
{
"name": "electron-app",
"version": "1.0.0",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"dev:ui": "vite",
"build:ui": "vite build",
"build": "npm run build:ui && electron-builder"
},
"build": {
"appId": "com.your.app",
"directories": {
"output": "dist"
},
"win": {
"target": "portable"
},
"mac": {
"target": "dmg"
},
"linux": {
"target": "AppImage"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"electron": "^35.1.5",
"electron-builder": "^26.0.12"
},
"dependencies": {
"@tiptap/extension-color": "^3.22.5",
"@tiptap/extension-placeholder": "^3.22.5",
"@tiptap/extension-text-align": "^3.22.5",
"@tiptap/extension-text-style": "^3.22.5",
"@tiptap/extension-underline": "^3.22.5",
"@tiptap/react": "^3.22.5",
"@tiptap/starter-kit": "^3.22.5",
"@vitejs/plugin-react": "^6.0.1",
"docx": "^9.6.1",
"dotenv": "^17.4.2",
"html-to-docx": "^1.8.0",
"mammoth": "^1.12.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"vite": "^8.0.10"
}
}