-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.91 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.91 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "vimer",
"version": "1.0.5",
"description": "Vimer is an AI powered app with a hassle-free interface for adjusting audio and video.",
"main": "main.js",
"window": {
"title": "Vimer"
},
"author": "Edenware",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/EdenwareApps/Vimer.git"
},
"keywords": [
"ai",
"ffmpeg",
"video"
],
"bugs": {
"url": "https://github.com/EdenwareApps/Vimer/issues"
},
"homepage": "https://github.com/EdenwareApps/Vimer#readme",
"dependencies": {
"@electron/remote": "^2.1.2",
"@fortawesome/fontawesome-free": "^6.4.2",
"adm-zip": "github:efoxbr/adm-zip",
"axios": "^1.6.3",
"env-paths": "^2.2.1",
"ffmpeg-static": "^5.3.0",
"formidable": "^2.1.1",
"jquery": "^3.7.1",
"openai": "^4.19.1",
"sanitize-filename": "^1.6.3"
},
"devDependencies": {
"electron": "^28.3.3",
"electron-builder": "^24.6.0"
},
"build": {
"appId": "app.edenware.vimer",
"productName": "Vimer",
"directories": {
"output": "dist"
},
"asarUnpack": [
"**/ffmpeg-static/**"
],
"files": [
"**/*"
],
"win": {
"icon": "default_icon.png",
"artifactName": "${productName}_${version}_${os}_${arch}.${ext}"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"installerIcon": "build/setup.ico",
"installerHeaderIcon": "assets/images/WizardSmallImage.bmp",
"installerSidebar": "assets/images/WizardImage.bmp"
}
},
"bin": {
"vimer": "./bin.js",
"vimer-debug": "./bin-debug.js"
},
"scripts": {
"start": "electron .",
"debug": "electron --inspect --enable-logging=stderr --trace-warnings --remote-debugging-port=9222 .",
"dist": "electron-builder",
"lint": "echo \"No linting configured\""
}
}