forked from hunmer/VideoManager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.16 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.16 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
{
"name": "videoManager",
"version": "1.2.2",
"description": "",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"update": "node fileList.js",
"build-32": "electron-builder --win --ia32"
},
"repository": "https://github.com/hunmer/videoManager",
"keywords": [],
"author": "hunmer",
"license": "CC0-1.0",
"devDependencies": {
"electron": "^18.1.0",
"electron-builder": "^22.14.13",
"electron-rebuild": "^3.2.7"
},
"dependencies": {
"archiver": "^5.3.1",
"better-sqlite3": "^7.5.1",
"dplayer-thumbnails": "^0.0.5",
"fluent-ffmpeg": "^2.1.2",
"iconv-lite": "^0.6.3"
},
"build": {
"productName": "videoManager",
"appId": "com.hunmer.videoManager",
"copyright": "hunmer",
"asar": false,
"directories": {
"output": "build"
},
"win": {
"target": [
"nsis"
],
"icon": "icon.ico"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"installerIcon": "icon.ico"
}
}
}