-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.32 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.32 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "electronizer",
"version": "0.0.2",
"description": "Structure to start an electron project - Package",
"main": "./",
"scripts": {
"postinstall": "install-app-deps",
"build": "electron-builder --dir",
"dist": "electron-builder",
"start": "export ELECTRON_ENV=1 && clear && electron src/start",
"elizer": "set ELECTRON_ENV=1 && cls && electron src/start"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/pedra/electronizer.git"
},
"build": {
"productName": "Electronizer",
"appId": "com.netlify.billrocha",
"copyright": "Copyright © 2021 BillRocha",
"asar": true,
"compression": "maximum",
"directories": {
"output": "dist",
"buildResources": "pack",
"app": "src"
},
"extraFiles": "assets",
"files": [
"!**/desktop/assets/${/*}/src/${/*}",
"!**/host/public/${/*}/src/${/*}"
],
"mac": {
"target": [
"dmg",
"zip"
],
"category": "office"
},
"linux": {
"category": "Office",
"target": [
"AppImage"
]
},
"win": {
"target": [
"nsis"
],
"requestedExecutionLevel": "requireAdministrator",
"publish": {
"provider": "github",
"channel": "latest"
}
},
"nsis": {
"installerIcon": "pack/icon.ico",
"uninstallerIcon": "pack/icon.ico",
"installerSidebar": "pack/sidebar.bmp",
"uninstallDisplayName": "Electronizer",
"license": "pack/license.txt",
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"keywords": [
"electron",
"windows",
"native",
"cover",
"bases",
"skeleton"
],
"author": "Bill Rocha <prbr@ymail.com>",
"url": "https://billrocha.netlify.com",
"funding": "https://billrocha.netlify.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/pedra/electronizer/issues"
},
"homepage": "https://github.com/pedra/electronizer#readme",
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.4",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.24.4",
"@babel/register": "^7.23.7",
"del": "^7.1.0",
"electron": "^30.0.1",
"electron-builder": "^24.13.3",
"gulp": "^5.0.0",
"gulp-autoprefixer": "^9.0.0",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-header": "^1.8.9",
"gulp-html-minifier2": "^1.1.11",
"gulp-if": "^3.0.0",
"gulp-javascript-obfuscator": "^1.1.6",
"gulp-uglify": "^3.0.2",
"install": "^0.13.0",
"streamqueue": "^1.1.2",
"uglify-es": "^3.3.9",
"yargs": "^17.7.2"
},
"dependencies": {
"clean-css": "^5.3.3",
"express": "^4.19.2",
"socket-client": "^1.0.0",
"socket.io": "^4.7.5"
}
}