-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.26 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.26 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
{
"name": "TOPOLAR",
"homepage": "https://topolar.co.kr",
"version": "1.1.10",
"description": "TOPOLAR APP",
"main": "main.js",
"private": true,
"author": "Tony's Coding",
"repository": "https://github.com/tonyscoding/tocol_release/",
"scripts": {
"test": "electron-dev",
"electron-dev": "electron .",
"rebuild": "npm rebuild --runtime=electron --target=13.1.4 --disturl=https://atom.io/download/atom-shell",
"deploy-win": "electron-builder --windows nsis:ia32",
"deploy-mac": "electron-builder --mac",
"postinstall": "electron-builder install-app-deps",
"codesign": "cd code_sign && SignTool.exe sign /v /a /ac MSCV_UserTrust.cer /n \"Tony's Coding Co., Ltd.\" /f CHAIN_tonyscoding_com.pfx /p tlsqksvhfh219 /tr http://timestamp.digicert.com /td sha256 /fd sha256 TOPOLAR-Setup.exe",
"verify-codesign": "cd code_sign && SignTool.exe verify /v /kp TOPOLAR-Setup.exe"
},
"dependencies": {
"electron-is-dev": "2.0.0",
"electron-log": "4.3.5",
"electron-updater": "4.3.10",
"robotjs": "0.6.0",
"vkey": "1.0.1"
},
"devDependencies": {
"electron": "13.1.4",
"electron-builder": "23.0.2",
"electron-notarize": "^1.0.0",
"electron-rebuild": "2.3.5"
},
"build": {
"appId": "com.app.topolar",
"productName": "TOPOLAR",
"artifactName": "TOPOLAR-Setup.${ext}",
"files": [
"**/*",
"!code_sign"
],
"publish": [
"github"
],
"protocols": {
"name": "topolar-protocol",
"schemes": [
"topolarapp"
]
},
"win": {
"target": "nsis",
"icon": "topolar_logo.ico"
},
"mac": {
"icon": "./topolar_logo512.ico",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "./entitlements.mac.plist",
"entitlementsInherit": "./entitlements.mac.plist",
"extendInfo": {
"NSMicrophoneUsageDescription": "This app requires microphone access to record audio"
}
},
"afterSign": "./notarize.js"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}