-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.8 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
{
"name": "smoothmyvideo",
"version": "1.0.3",
"description": "Desktop GUI for AI video frame interpolation (GMFSS), Python engine under the hood",
"author": "Florin Nutiu",
"main": "dist/main.js",
"scripts": {
"start": "tsc && electron .",
"setup": "node -e \"const fs=require('fs'); fs.rmSync('node_modules', { recursive: true, force: true }); fs.rmSync('package-lock.json', { force: true }); fs.rmSync('engine/bin', { recursive: true, force: true })\" && npm install && node scripts/fetch-ffmpeg.js && npm start",
"dist": "node -e \"require('fs').rmSync('release', { recursive: true, force: true })\" && tsc && electron-builder && node scripts/pack-zip.js",
"lint": "prettier --write \"src/**/*.ts\" && tsc --noEmit && pyright",
"postinstall": "node scripts/dev-icon.js"
},
"devDependencies": {
"@types/node": "^26",
"electron": "^43",
"electron-builder": "^26",
"prettier": "^3",
"pyright": "^1.1",
"rcedit": "^4",
"typescript": "^7"
},
"private": true,
"build": {
"appId": "com.smoothmyvideo.app",
"productName": "SmoothMyVideo",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"renderer/**/*",
"icon.ico",
"icon.png"
],
"extraResources": [
{
"from": "engine",
"to": "engine",
"filter": ["**/*", "!**/__pycache__/**", "!trt_cache/**", "!*.onnx", "!*.onnx.data", "!*.engine", "!runtime_*_bak/**", "!trtrtx_bindings/*.obj", "!rtxvideo/nvngx_vsr.dll", "!rtxvideo/nvngx_truehdr.dll", "!rtxvideo/build_src/**", "!dlssg/build_src/**", "!nvoffruc/NvOFFRUC.dll", "!nvoffruc/cudart64_110.dll", "!dvtools/**", "!hptools/**"]
}
],
"extraFiles": ["LICENSE", "THIRD_PARTY_NOTICES.md"],
"win": {
"target": "dir",
"icon": "icon.ico"
}
}
}