-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.3 KB
/
package.json
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
{
"name": "flowerpassword-electron",
"version": "0.4.1",
"description": "A modern cross-platform flowerpassword implement",
"main": "index.js",
"scripts": {
"start": "electron .",
"win": "electron-builder --win --x64",
"mac": "electron-builder --mac --x64",
"linux": "electron-builder --linux --x64"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RoderickQiu/flowerpassword-electron.git"
},
"author": "RoderickQiu",
"license": "GPL-3.0-or-later",
"appId": "com.scrisstudio.flowerpasswordelectron",
"copyright": "(c) Roderick Qiu",
"productName": "flowerpassword-electron",
"bugs": {
"url": "https://github.com/RoderickQiu/flowerpassword-electron/issues"
},
"homepage": "https://github.com/RoderickQiu/flowerpassword-electron#readme",
"devDependencies": {
"electron": "^7.2.4",
"electron-builder": "^20.42.0"
},
"dependencies": {
"auto-launch": "^5.0.5",
"blueimp-md5": "^2.10.0",
"electron-store": "^3.2.0"
},
"build": {
"win": {
"target": [
"dir"
],
"icon": "res/icons/iconWin.ico"
},
"mac": {
"target": [
"dir"
],
"icon": "res/icons/iconMac.icns"
},
"linux": {
"target": [
"dir"
],
"icon": "res/icons/icon.png"
}
}
}