-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
63 lines (63 loc) · 1.58 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
55
56
57
58
59
60
61
62
63
{
"name": "passky",
"version": "8.1.2",
"license": "GPL-3.0",
"author": "Rabbit Company LLC <[email protected]>",
"homepage": "https://passky.org",
"icon": "images/logo.png",
"repository": "https://github.com/Rabbit-Company/Passky-Desktop",
"description": "Simple, modern, open source and secure password manager.",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder"
},
"keywords": [
"Passky",
"Password Manager",
"Password",
"Manager"
],
"build": {
"appId": "com.rabbit-company.passky",
"productName": "Passky",
"copyright": "Copyright 2021 Rabbit Company LLC",
"mac": {
"category": "public.app-category.productivity",
"icon": "images/logo.icns"
},
"win": {
"icon": "images/logo.ico",
"target": [
"nsis",
"portable",
"appx"
]
},
"linux": {
"target": [
"AppImage",
"snap",
"deb",
"rpm",
"freebsd"
],
"maintainer": "com.rabbit-company.passky",
"category": "Utility",
"vendor": "Rabbit Company LLC",
"description": "Simple, modern, open source and secure password manager."
},
"appx": {
"applicationId": "Passky",
"displayName": "Passky",
"backgroundColor": "#44475a",
"publisher": "CN=52198C2F-725A-42E5-855A-FB2F0CA67875",
"publisherDisplayName": "Rabbit Company LLC",
"identityName": "57225RabbitCompanyLLC.Passky"
}
},
"devDependencies": {
"electron": "^29.1.6",
"electron-builder": "^24.13.3"
}
}