-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelectron-builder.json
More file actions
53 lines (53 loc) · 1.31 KB
/
electron-builder.json
File metadata and controls
53 lines (53 loc) · 1.31 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
{
"name": "make-video-small",
"version": "2.0.0",
"private": false,
"type": "module",
"description": "Professional AV1 Video Compression Studio",
"author": "Sahiljeet Singh Kalsi (GhostofWeb)",
"main": "dist-electron/main.js",
"repository": {
"type": "git",
"url": "https://github.com/ghostofweb/makevideosmall.git"
},
"scripts": {
"dev": "npm-run-all --parallel dev:react dev:electron",
"dev:react": "vite",
"dev:electron": "npm run transpile:electron && electron .",
"build": "npm run transpile:electron && tsc -b && vite build",
"transpile:electron": "tsc --project src/electron/tsconfig.json",
"dist:win": "npm run build && electron-builder --win --x64"
},
"build": {
"appId": "com.ghostofweb.makevideosmall",
"productName": "Make Video Small",
"publish": [
{
"provider": "github",
"owner": "ghostofweb",
"repo": "makevideosmall"
}
],
"directories": {
"output": "dist"
},
"win": {
"target": "nsis"
},
"files": [
"dist-electron/**/*",
"dist-react/**/*",
"node_modules/**/*",
"package.json",
"engine/**/*"
],
"asar": true
},
"dependencies": {
"electron-updater": "^6.8.3"
},
"devDependencies": {
"electron-builder": "^26.8.1",
"..." : "..."
}
}