-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (31 loc) · 633 Bytes
/
package.json
File metadata and controls
32 lines (31 loc) · 633 Bytes
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
{
"name": "passgen",
"version": "2.3.1",
"description": "This is password generator app",
"main": "index.js",
"scripts": {
"start": "electron .",
"dist": "electron-builder"
},
"author": "ridz97",
"license": "ISC",
"build": {
"appId": "com.ridz97.passgen",
"win": {
"target": "nsis",
"icon": "build/icon.png"
},
"mac": {
"category": "public.app-category.utilities",
"icon": "build/icon.png"
},
"asar": true
},
"devDependencies": {
"electron": "^9.4.0",
"electron-builder": "^22.4.1"
},
"dependencies": {
"file-saver": "^2.0.2"
}
}