-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.79 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.79 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
{
"name": "diamond-file-converter",
"version": "1.0.0",
"description": "An Electron-based Windows app for converting audio, video, and image files.",
"main": "src/main.js",
"funding": {
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/willtda"
},
"scripts": {
"start": "electron .",
"build": "electron-builder"
},
"repository": {
"type": "git",
"url": "https://github.com/diamonddigitaldev/Diamond-File-Converter"
},
"build": {
"appId": "com.diamonddigitaldev.diamondfileconverter",
"productName": "Diamond File Converter",
"artifactName": "Diamond-File-Converter-Setup-${version}.${ext}",
"extraResources": [
{
"from": "node_modules/ffmpeg-static/ffmpeg.exe",
"to": "ffmpeg/ffmpeg.exe"
}
],
"publish": {
"provider": "github",
"owner": "diamonddigitaldev",
"repo": "Diamond-File-Converter"
},
"win": {
"target": [
"nsis"
],
"icon": "src/assets/diamondfileconverter.ico"
},
"nsis": {
"perMachine": true,
"createDesktopShortcut": true,
"menuCategory": "Diamond Digital Development"
}
},
"keywords": [],
"author": "Diamond Digital Development <https://diamonddigital.dev>",
"license": "Apache-2.0",
"devDependencies": {
"electron": "^41.1.0",
"electron-builder": "^26.8.1"
},
"dependencies": {
"bootstrap": "^5.3.3",
"electron-store": "^11.0.2",
"electron-updater": "^6.8.3",
"ffmpeg-static": "^5.2.0",
"fluent-ffmpeg": "^2.1.3",
"material-icons": "^1.13.14"
}
}