-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.98 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 2.98 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "mergemate",
"version": "1.0.1",
"description": "MergeMate — Code Comparison Tool",
"productName": "MergeMate",
"main": "./out/main/index.js",
"author": {
"name": "wanderlp",
"email": "lopez.wanderson@gmail.com"
},
"homepage": ".",
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"dist": "npm run build && electron-builder",
"dist:win": "npm run build && electron-builder --win",
"dist:mac": "npm run build && electron-builder --mac",
"dist:linux": "npm run build && electron-builder --linux",
"typecheck": "tsc --noEmit",
"gen-icons": "node scripts/generate-icons.mjs"
},
"dependencies": {
"@electron-toolkit/tsconfig": "^2.0.0",
"@electron-toolkit/utils": "^4.0.0",
"@iconify/icons-devicon": "^1.2.17",
"@iconify/icons-mdi": "^1.2.48",
"@iconify/icons-vscode-icons": "^1.2.29",
"@iconify/react": "^6.0.2",
"@monaco-editor/react": "^4.6.0",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"diff-match-patch": "^1.0.5",
"electron-store": "^8.2.0",
"electron-updater": "^6.8.3",
"framer-motion": "^12.38.0",
"i18next": "^25.8.20",
"i18next-browser-languagedetector": "^8.2.1",
"lucide-react": "^0.344.0",
"monaco-editor": "^0.47.0",
"react": "^18.3.1",
"react-compare-slider": "^3.1.0",
"react-dom": "^18.3.1",
"react-file-icon": "^1.6.0",
"react-i18next": "^16.5.8",
"tailwind-merge": "^3.5.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@resvg/resvg-js": "^2.6.2",
"@types/diff-match-patch": "^1.0.36",
"@types/node": "^20.12.7",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"electron": "^30.0.1",
"electron-builder": "^24.13.3",
"electron-vite": "^2.1.0",
"png2icons": "^2.0.1",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"vite": "^5.2.11"
},
"build": {
"appId": "com.mergemate.app",
"productName": "MergeMate",
"publish": {
"provider": "github",
"owner": "wanderlp",
"repo": "mergemate",
"releaseType": "release"
},
"directories": {
"output": "dist"
},
"files": [
"out/**/*"
],
"win": {
"target": "nsis",
"artifactName": "MergeMate-Setup.exe",
"icon": "resources/icon.ico"
},
"mac": {
"target": "dmg",
"artifactName": "MergeMate.dmg",
"icon": "resources/icon.icns"
},
"linux": {
"target": "AppImage",
"artifactName": "MergeMate.AppImage",
"icon": "resources/icon.png"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
}
}