forked from NekoSuneProjects/nekos-ai-clipper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.61 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
{
"name": "vpclips",
"version": "1.0.0",
"description": "AI-ish clipping app with VOD import + loud reaction detection",
"main": "main.js",
"bin": "main.js",
"author": "Solutions Techno-Rédac inc.",
"scripts": {
"test": "electron .",
"build": "electron-builder",
"build:win": "electron-builder --win"
},
"build": {
"copyright": "Copyright © 2025 Solutions Techno-Rédac inc.",
"appId": "com.verticalhost.vpclips",
"productName": "VPClips",
"nsis": {
"allowToChangeInstallationDirectory": true,
"license": "license.txt",
"oneClick": false
},
"win": {
"artifactName": "${productName}-Setup-${version}.${ext}",
"icon": "assets/icon.ico",
"files": [
"main.js",
"core/**",
"preload.js",
"index.js",
"python/**",
"renderer/**",
"tools/toolsManager.js",
"assets/**"
],
"target": [
"nsis",
"msi"
]
},
"appx": {
"backgroundColor": "#ffffff",
"displayName": "VPClips",
"publisher": "CN=Solutions Techno-Rédac inc.",
"publisherDisplayName": "Solutions Techno-Rédac inc.",
"identityName": "com.verticalhost.vpclips"
},
"directories": {
"output": "dist",
"buildResources": "assets"
}
},
"dependencies": {
"fluent-ffmpeg": "^2.1.2",
"png-chunks-extract": "^1.0.0",
"pngjs": "^7.0.0",
"tesseract.js": "^6.0.1",
"unzipper": "^0.12.3",
"wav-decoder": "^1.3.0",
"yt-dlp-exec": "^1.0.2"
},
"devDependencies": {
"electron": "^32.0.0",
"electron-builder": "^25.1.8"
}
}