-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.18 KB
/
package.json
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
{
"name": "file-converter",
"version": "0.1.3",
"description": "",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"build": "electron-builder build --win --publish never"
},
"author": "WashingMachine94",
"license": "ISC",
"devDependencies": {
"electron": "^25.3.0",
"electron-builder": "^24.4.0"
},
"dependencies": {
"electron-squirrel-startup": "^1.0.0",
"electron-updater": "^6.1.4",
"ffmpeg-static": "^5.2.0",
"fluent-ffmpeg": "^2.1.2",
"sharp": "^0.32.3"
},
"repository": {
"type": "git",
"url": "https://github.com/WashingMachine94/File-Converter"
},
"publish": {
"provider": "github",
"releaseType": "release"
},
"build": {
"appId": "WM94.File.Converter",
"productName": "File Converter",
"win": {
"target": "nsis",
"icon": "./images/change1.ico",
"files": [
"!.git/*",
"!.gitignore"
]
},
"nsis": {
"installerIcon": "./images/change1.ico",
"uninstallerIcon": "./images/change1.ico",
"uninstallDisplayName": "File Converter"
},
"icon": "./images/change1.ico"
}
}