-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.09 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.09 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
{
"name": "video-encoder",
"version": "1.0.0",
"description": "A simple Electron-based video encoder",
"author": "Eliyah Sundström",
"private": true,
"main": "./dist/main.js",
"scripts": {
"build": "tsc",
"postbuild": "electron-builder",
"dev": "electron .",
"start": "yarn build && electron ."
},
"dependencies": {
"ffmpeg-static": "^5.2.0",
"fluent-ffmpeg": "^2.1.2"
},
"devDependencies": {
"@types/node": "^20.14.9",
"electron": "^37.2.0",
"electron-builder": "^26.0.12",
"ts-node": "^10.9.2",
"typescript": "^4.7.2"
},
"build": {
"appId": "com.sundstroem.videoencoder",
"productName": "Video Encoder",
"files": [
"dist/**/*",
"public/**/*",
"node_modules/ffmpeg-static/**/*"
],
"asarUnpack": [
"node_modules/ffmpeg-static"
],
"directories": {
"buildResources": "assets"
},
"asar": true,
"extraResources": [],
"win": {
"target": "nsis"
},
"mac": {
"target": "dmg"
},
"linux": {
"target": "AppImage"
},
"publish": null
}
}