-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
154 lines (154 loc) · 4.71 KB
/
Copy pathpackage.json
File metadata and controls
154 lines (154 loc) · 4.71 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "topluyo",
"version": "2026.7.1018",
"description": "Topluyo",
"main": "main.js",
"scripts": {
"start": "ELECTRON_DISABLE_SANDBOX=1 NODE_ENV=production electron . --disable-dev-shm-usage --no-sandbox",
"dev": "ELECTRON_DISABLE_SANDBOX=1 NODE_ENV=development electron . --disable-dev-shm-usage --no-sandbox",
"start:win": "set NODE_ENV=production&& electron .",
"dev:win": "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&& set WINDOWS_STORE=true&& electron-builder --win --config.win.target=appx --config=electron-builder.config.js",
"build:linux": "npm run clean && electron-builder --linux --publish=never",
"build:mac": "npm run clean && electron-builder --mac"
},
"author": "Topluyo Team",
"license": "MIT",
"devDependencies": {
"electron": "^43.0.0",
"electron-builder": "^26.15.3"
},
"dependencies": {
"electron-log": "^5.4.1",
"electron-native-screenshare": "1.1.0",
"electron-updater": "^6.3.9",
"electron-window-state": "^5.0.3",
"uiohook-napi": "^1.5.5"
},
"build": {
"appId": "com.topluyo.app",
"productName": "Topluyo",
"directories": {
"output": "dist"
},
"files": [
"build/**/*",
"node_modules/**/*",
"node_modules/electron-native-screenshare/build/Release/*.node",
"*.html",
"*.png",
"icons/*",
"*.rtf",
"*.js",
"preloads/*.js"
],
"asarUnpack": [
"node_modules/electron-native-screenshare/build/Release/*.node",
"node_modules/uiohook-napi/prebuilds/**/*.node"
],
"protocols": [
{
"name": "Topluyo",
"schemes": [
"topluyo"
]
}
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
},
{
"target": "appx",
"arch": [
"x64",
"ia32",
"arm64"
]
}
],
"icon": "build/icon.ico",
"artifactName": "Topluyo-Setup-${version}.${ext}",
"requestedExecutionLevel": "asInvoker"
},
"appx": {
"identityName": "TopluyoApp.Topluyo",
"publisher": "CN=569715F9-C64D-44BC-9F1E-31B71AC68EEC",
"publisherDisplayName": "TopluyoApp",
"languages": "tr-TR",
"backgroundColor": "#191819",
"artifactName": "TopluyoApp-${version}.${ext}",
"showNameOnTiles": true,
"electronUpdaterAware": false,
"setBuildNumber": false
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Topluyo",
"license": "kullanici_sozlesmesi.rtf",
"deleteAppDataOnUninstall": true
},
"linux": {
"target": [
"AppImage",
"snap",
"tar.gz"
],
"icon": "icons/png/256x256.png",
"category": "Utility",
"description": "Topluyo",
"executableName": "Topluyo",
"artifactName": "Topluyo-${version}.${ext}",
"maintainer": "Hasan Delibaş <info@topluyo.com>"
},
"snap": {
"confinement": "classic",
"publish": false
},
"mac": {
"target": [
"dmg",
"pkg",
"zip"
],
"icon": "icons/mac/icon.icns",
"category": "public.app-category.utilities",
"artifactName": "Topluyo-${version}.${ext}",
"hardenedRuntime": false,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"extendInfo": {
"NSMicrophoneUsageDescription": "Topluyo uygulaması mikrofon erişimi gerektirir.",
"NSCameraUsageDescription": "Topluyo uygulaması kamera erişimi gerektirir.",
"NSScreenRecordingUsageDescription": "Topluyo uygulaması ekran paylaşımı ve ekran kaydı için ekran erişimi gerektirir.",
"NSScreenCaptureDescription": "Topluyo uygulaması ekran paylaşımı için ekran erişimi gerektirir."
}
},
"afterPack": "./fixChromeSandbox.js",
"publish": [
{
"provider": "github",
"owner": "topluyo",
"repo": "App"
}
]
},
"allowScripts": {
"electron-native-screenshare@1.0.1": true,
"electron-winstaller@5.4.0": true,
"uiohook-napi@1.5.5": true
}
}