-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
101 lines (101 loc) · 3.31 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
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
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "ff-password-exporter",
"productName": "FF Password Exporter",
"description": "Easily export your saved passwords from Firefox.",
"version": "0.0.0",
"keywords": [
"firefox",
"mozilla",
"passwords",
"export"
],
"author": "Kyle Spearrin",
"homepage": "https://kylespearrin.com",
"repository": {
"type": "git",
"url": "/~https://github.com/kspearrin/ff-password-exporter"
},
"license": "GPL-3.0",
"scripts": {
"electron": "electron --inspect=5858 ./src --watch",
"clean:dist": "rimraf ./dist",
"dist:lin": "npm run clean:dist && electron-builder --linux --x64 -p never",
"dist:mac": "npm run clean:dist && electron-builder --mac -p never",
"dist:win": "npm run clean:dist && electron-builder --win --x64 --ia32 -p never -c.win.certificateSubjectName=\"8bit Solutions LLC\"",
"dist:win:ci": "npm run clean:dist && electron-builder --win --x64 --ia32 -p never",
"publish:lin": "npm run clean:dist && electron-builder --linux --x64 -p always",
"publish:mac": "npm run clean:dist && electron-builder --mac -p always",
"publish:win": "npm run clean:dist && electron-builder --win --x64 --ia32 -p always -c.win.certificateSubjectName=\"8bit Solutions LLC\""
},
"build": {
"appId": "com.kylespearrin.ff-password-exporter",
"copyright": "Copyright © 2015-2020 Kyle Spearrin",
"directories": {
"buildResources": "resources",
"output": "dist",
"app": "src"
},
"mac": {
"category": "public.app-category.productivity",
"target": [
"dmg",
"zip"
]
},
"win": {
"target": [
"portable",
"nsis"
]
},
"linux": {
"category": "Utility",
"synopsis": "Easily export your saved passwords from Firefox.",
"target": [
"AppImage"
]
},
"dmg": {
"artifactName": "FF-Password-Exporter-${version}.${ext}",
"contents": [
{
"x": 150,
"y": 185,
"type": "file"
},
{
"x": 390,
"y": 180,
"type": "link",
"path": "/Applications"
}
],
"window": {
"width": 540,
"height": 380
}
},
"nsis": {
"oneClick": true,
"artifactName": "FF-Password-Exporter-Installer-${version}.${ext}",
"uninstallDisplayName": "${productName}",
"deleteAppDataOnUninstall": true
},
"portable": {
"artifactName": "FF-Password-Exporter-Portable-${version}.${ext}"
},
"appImage": {
"artifactName": "FF-Password-Exporter-${version}-${arch}.${ext}"
}
},
"devDependencies": {
"electron": "^3.0.6",
"electron-builder": "22.4.0",
"electron-reload": "^1.5.0",
"eslint": "^5.8.0",
"node-forge": "^0.7.6",
"papaparse": "5.2.0",
"rimraf": "^2.6.2",
"sql.js": "^0.5.0"
}
}