-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.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
{
"name": "filenmount",
"productName": "FilenMount",
"version": "0.1.0",
"description": "Filen을 로컬 네트워크 드라이브로 마운트 — 다중 계정 union(하나의 큰 스토리지), 부팅 시 자동 시작. rclone 엔진.",
"main": "main.js",
"author": "dongri",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/catgarret/FilenMount"
},
"scripts": {
"start": "electron .",
"dist:mac": "electron-builder --mac",
"dist:mac:dmg": "electron-builder --mac dmg",
"dist:win": "electron-builder --win",
"dist": "electron-builder --mac --win"
},
"devDependencies": {
"electron": "^43.1.1",
"electron-builder": "^26.15.3"
},
"build": {
"appId": "net.dongri.filenmount",
"productName": "FilenMount",
"files": [
"main.js",
"preload.js",
"renderer/**",
"locales/**",
"build/icon.png",
"build/logo.svg",
"!renderer/demo.html",
"!**/*.map"
],
"mac": {
"target": [
{
"target": "zip",
"arch": [
"arm64"
]
}
],
"icon": "build/icon.png",
"category": "public.app-category.utilities"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"icon": "build/icon.png"
}
}
}