-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.36 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.36 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
{
"name": "local-network-browser",
"version": "1.1.0",
"description": "로컬 서버 제품을 위한 브랜딩 패키지 브라우저 - 자동 네트워크 탐색 및 연결",
"main": "main.js",
"scripts": {
"start": "electron .",
"build-mac": "electron-builder --mac",
"build-win": "electron-builder --win",
"build": "electron-builder --mac --win"
},
"keywords": [
"electron",
"network",
"browser",
"local",
"server",
"branding",
"package"
],
"author": "Kevin Park (박경종) <kevinpark@okyc.kr>",
"license": "MIT",
"copyright": "Copyright © 2025 Kevin Park. All rights reserved.",
"repository": {
"type": "git",
"url": "https://github.com/kevinpark/local-network-browser"
},
"devDependencies": {
"canvas": "^3.2.0",
"electron": "^28.0.0",
"electron-builder": "^24.9.1"
},
"build": {
"appId": "com.kevinpark.networkbrowser",
"productName": "PlanBank",
"directories": {
"output": "dist"
},
"mac": {
"category": "public.app-category.utilities",
"icon": "build/icon.png",
"target": [
{
"target": "dmg",
"arch": "universal"
},
{
"target": "zip",
"arch": "universal"
}
],
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"hardenedRuntime": false,
"gatekeeperAssess": false
},
"win": {
"icon": "build/icon.ico",
"target": {
"target": "nsis",
"arch": [
"x64"
]
},
"requestedExecutionLevel": "asInvoker"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"allowElevation": true,
"perMachine": false,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "기획뱅크",
"installerIcon": "build/icon.ico",
"uninstallerIcon": "build/icon.ico",
"license": "LICENSE.installer.txt",
"artifactName": "PlanBank-Setup-${version}.${ext}",
"deleteAppDataOnUninstall": true,
"installerHeaderIcon": "build/icon.ico"
},
"files": [
"**/*",
"!dist/**/*",
"!node_modules/*/{CHANGELOG.md,README.md,README,readme.md,readme}",
"!node_modules/*/{test,__tests__,tests,powered-test,example,examples}"
]
}
}