-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 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
{
"name": "comper-browser-remaster",
"version": "1.0.0",
"main": "dist/main.js",
"description": "Hızlı ve Eski Tarayıcı Deneyimi",
"author": "Tda_45 <tahadikbas45@gmail.com>",
"scripts": {
"build": "tsc",
"start": "npm run build && electron .",
"dist": "npm run build && electron-builder"
},
"build": {
"appId": "com.comper.remaster",
"productName": "Comper Browser Remaster",
"directories": {
"buildResources": "build"
},
"files": [
"dist/**/*",
"index.html",
"style.css",
"package.json",
"build/icon.ico"
],
"win": {
"target": "nsis",
"icon": "build/icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Comper Browser Remaster",
"installerIcon": "build/icon.ico",
"uninstallerIcon": "build/icon.ico",
"uninstallDisplayName": "Comper Browser Remaster Kaldır"
}
},
"devDependencies": {
"electron": "^28.0.0",
"electron-builder": "^24.13.3",
"typescript": "^5.4.0"
}
}