-
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) · 947 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 947 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": "filecc",
"version": "1.0.2",
"author": "Bloby",
"main": "index.js",
"scripts": {
"start": "electron .",
"build": "electron-builder"
},
"build": {
"asar": false,
"appId": "com.bloby.filecc",
"productName": "FileCC",
"win": {
"target": "nsis",
"icon": "assets/favicon.ico"
},
"nsis": {
"runAfterFinish": false,
"allowElevation": true,
"perMachine": true,
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"files": [
"index.js",
"preload.js",
"renderer/**",
"converters/**",
"node_modules/**",
"assets/**"
]
},
"dependencies": {
"ffmpeg-static": "^5.3.0",
"fluent-ffmpeg": "^2.1.3",
"mammoth": "^1.11.0",
"pdf-lib": "^1.17.1",
"sharp": "^0.34.5"
},
"devDependencies": {
"electron": "^40.8.0",
"electron-builder": "^26.8.1",
"rcedit": "^5.0.2"
}
}