-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 975 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 975 Bytes
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
{
"name": "videorepairpro",
"version": "2.0.3",
"description": "Video Repair Control Panel powered by Untrunc",
"main": "main.js",
"scripts": {
"start": "node server.js",
"dev": "electron .",
"dist:mac": "electron-builder --mac",
"pack": "electron-builder --dir"
},
"build": {
"appId": "com.tvcnet.videorepairpro",
"productName": "VideoRepair Pro",
"asarUnpack": [
"untrunc-master/untrunc"
],
"directories": {
"output": "dist"
},
"mac": {
"category": "public.app-category.video",
"target": [
"dmg",
"zip"
]
},
"files": [
"**/*",
"!node_modules/electron",
"!node_modules/electron-builder",
"!dist",
"!.planning",
"!.git"
]
},
"dependencies": {
"express": "^4.21.0",
"get-port": "^5.1.1",
"multer": "^1.4.5-lts.1"
},
"devDependencies": {
"electron": "^40.6.0",
"electron-builder": "^26.8.1"
}
}