-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 946 Bytes
/
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
{
"name": "Passiroo",
"version": "1.0.0",
"description": "Passiroo - A password management app",
"type": "module",
"main": "app/main.mjs",
"build": {
"appId": "app.netlify.papritz.passiroo",
"productName": "Passiroo",
"directories": {
"output": "dist"
},
"win": {
"target": "nsis",
"icon": "build/Windows/icon.ico"
},
"mac": {
"target": "dmg",
"icon": "build/macOS/icon.icns"
},
"linux": {
"target": "AppImage",
"icon": "build/Linux/icon.png"
}
},
"files": [
"app/**/*",
"public/**/*",
"node_modules/**/*",
"package-lock.json",
"package.json"
],
"scripts": {
"start": "electron .",
"test": "python -m unittest discover -s backend/tests",
"build": "electron-builder"
},
"author": "Austin Papritz",
"license": "ISC",
"devDependencies": {
"electron": "^30.0.6",
"electron-builder": "^24.13.3"
}
}