This repository was archived by the owner on Jun 25, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.93 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
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
{
"name": "electron-codebrowser",
"version": "1.0.0-beta",
"description": "Custom browser created in Electron.",
"keywords": [
"electron",
"browser",
"navigation",
"tab",
"addressbar"
],
"main": "browser/main.js",
"type": "commonjs",
"author": "ELedlow The Fox",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Breakout-X/electron-codebrowser"
},
"files": [
"index.js",
"useConnect.js",
"control.js",
"preload.js"
],
"scripts": {
"start": "electron .",
"start:control": "npm run update:control && npm run start",
"update:control": "npx babel browser/renderer/control.jsx --out-file browser/renderer/control-compiled.js",
"build": "electron-builder",
"build:win64": "electron-builder --win --x64",
"build:win32": "electron-builder --win --ia32",
"build:winarm": "electron-builder --win --arm64",
"build:linux": "electron-builder --linux --x64",
"build:mac": "electron-builder --mac",
"build:last": "npm run build:win64 && npm run build:win32 && npm run build:winarm && npm run build:linux",
"docs": "documentation build *.js -f html -o docs"
},
"build": {
"appId": "com.electron.codebrowser",
"productName": "Electron CodeBrowser",
"directories": {
"output": "dist"
},
"win": {
"target": [
"portable",
"nsis",
"zip"
],
"signAndEditExecutable": false
},
"linux": {
"target": "dir"
},
"mac": {
"target": [
"dmg",
"zip"
]
}
},
"dependencies": {
"electron-log": "^3.0.7",
"file-url": "^2.0.2",
"classnames": "^2.2.6",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"electron": "^18.3.7",
"electron-builder": "^26.8.1"
}
}