-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.01 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.01 KB
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
{
"name": "browser",
"version": "1.0.0",
"description": "A simple web browser.",
"main": "index.js",
"scripts": {
"start": "electron .",
"dist": "electron-builder",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/usanusa666/browser.git"
},
"keywords": [
"browser",
"web-browser",
"electron"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/usanusa666/browser/issues"
},
"homepage": "https://github.com/usanusa666/browser#readme",
"devDependencies": {
"electron": "^31.0.1",
"electron-builder": "^24.13.3"
},
"build": {
"appId": "com.example.browser",
"productName": "Browser",
"files": [
"index.js",
"index.html",
"preload.js",
"package.json"
],
"mac": {
"category": "public.app-category.developer-tools"
},
"win": {
"target": "nsis"
},
"linux": {
"target": "AppImage"
}
}
}