-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 983 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 983 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
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "kids-browser",
"version": "1.0.1",
"description": "",
"license": "MIT",
"author": "",
"type": "commonjs",
"main": "main.js",
"scripts": {
"start": "electron .",
"devLive": "npx electronmon --trace-warnings .",
"build:web": "cd browserStyle && npm install && npm run build",
"build": "electron-builder",
"test": "echo \"Error: no test specified\" && exit 1"
},
"build": {
"appId": "com.mycompany.kidssafebrowser",
"publish" : null,
"productName": "KidsSafeBrowser",
"files": [
"main.js",
"preload.js",
"dist/**/*"
],
"directories": {
"buildResources": "assets"
},
"icon": "assets/icon.png",
"mac": {
"category": "public.app-category.utilities"
},
"win": {
"target": "nsis"
},
"linux": {
"target": "AppImage"
}
},
"devDependencies": {
"electron": "^39.2.7",
"electron-builder": "^26.0.12",
"electronmon": "^2.0.4"
}
}