-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.38 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.38 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
{
"name": "topluyo",
"version": "2025.5.1518",
"description": "Topluyo",
"main": "main.js",
"scripts": {
"start": "set NODE_ENV=production&& electron .",
"dev": "set NODE_ENV=development&& electron .",
"devbuild": "set NODE_ENV=development&& electron-builder --win --x64 --config.win.target=nsis",
"clean": "rm -rf dist",
"clear": "if exist dist rmdir /s /q dist",
"installer": "electron-builder --win --x64",
"build:winexe": "npm run clear && set NODE_ENV=production&& set STOREBUILD=false&& electron-builder --win --x64 --config.win.target=nsis",
"build:winstore": "npm run clear && set NODE_ENV=production&& set STOREBUILD=true&& electron-builder --win --x64 --config.win.target=appx",
"build:linux": "npm run clean && electron-builder --linux"
},
"author": "Hasan Delibaş, İsmail Han Duman, Topluyo Team",
"license": "MIT",
"devDependencies": {
"electron": "^33.3.2",
"electron-builder": "^25.1.8"
},
"dependencies": {
"electron-updater": "^6.3.9",
"electron-window-state": "^5.0.3"
},
"build": {
"appId": "com.topluyo.app",
"productName": "Topluyo",
"directories": {
"output": "dist"
},
"files": [
"build/**/*",
"node_modules/**/*",
"*.html",
"icons/*",
"*.rtf",
"*.js"
],
"win": {
"target": [
"nsis",
"appx"
],
"icon": "build/icon.ico",
"artifactName": "Topluyo-Setup-${version}.${ext}"
},
"appx": {
"identityName": "Topluyo.Topluyo",
"publisher": "CN=B644B811-3CB1-46E2-8448-9423A6C95D4A",
"publisherDisplayName": "Topluyo",
"languages": "tr-TR",
"backgroundColor": "#191819"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Topluyo",
"license": "kullanici_sozlesmesi.rtf",
"deleteAppDataOnUninstall": true
},
"linux": {
"target": ["AppImage", "deb"],
"icon": "icons/png/256x256.png",
"category": "Utility",
"description": "Topluyo",
"executableName": "Topluyo",
"artifactName": "Topluyo-${version}.${ext}",
"maintainer": "Hasan Delibaş <info@topluyo.com>"
},
"publish": [
{
"provider": "github",
"owner": "topluyo",
"repo": "windows-app"
}
]
}
}