-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.03 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
{
"name": "diff-compare",
"version": "1.0.0",
"description": "A Beyond Compare clone using Electron, React, Vite, and TypeScript.",
"main": "dist/main/main.js",
"scripts": {
"dev:renderer": "vite",
"dev:main": "tsc -w -p tsconfig.main.json",
"build:renderer": "vite build",
"build:main": "tsc -p tsconfig.main.json",
"build": "npm run build:renderer && npm run build:main",
"start": "electron .",
"dev": "concurrently \"npm run dev:renderer\" \"tsc -p tsconfig.main.json && wait-on http://localhost:5173 && electron .\"",
"package": "npm run build && electron-builder"
},
"dependencies": {
"lucide-react": "^0.435.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"electron": "^31.3.0",
"electron-builder": "^24.13.3",
"typescript": "^5.5.4",
"vite": "^5.4.1",
"wait-on": "^7.2.0"
}
}