-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 984 Bytes
/
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
{
"name": "veditbox",
"version": "1.0.3",
"description": "Utility Box to paste url, image data or record audio then drag it out as an file to another application.",
"main": "src/main/index.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "electron .",
"build": "electron-builder --dir",
"dist": "electron-builder"
},
"author": "Mayk Brito <[email protected]>",
"license": "MIT",
"devDependencies": {
"electron": "^21",
"electron-builder": "23.0.2"
},
"dependencies": {
"@electron/remote": "^2.0.11",
"@ffmpeg-installer/ffmpeg": "^1.0.20",
"axios": "^1.5.1",
"fluent-ffmpeg": "^2.1.2",
"imagemagick": "^0.1.3",
"request": "^2.88.2",
"yt-dlp-wrap": "^2.3.12"
},
"build": {
"appId": "mb.veditbox",
"asar": false,
"mac": {
"category": "public.app-category.utilities"
},
"files": [
"src/**/*",
"build",
"node_modules/**/*"
]
}
}