-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.5 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.5 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
77
78
79
80
81
82
{
"name": "smoothmyvideo",
"version": "1.0.3",
"description": "Desktop GUI for AI video frame interpolation (GMFSS), native TensorRT 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 && node scripts/stage-gpu-runtime.js && node scripts/export-onnx.js && npm start",
"dist": "node -e \"require('fs').rmSync('release', { recursive: true, force: true })\" && tsc && node scripts/stage-gpu-runtime.js --required && node scripts/export-onnx.js --required && 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.6.2",
"electron": "^44.4.5",
"electron-builder": "^26.15.3",
"prettier": "^3.9.9",
"pyright": "^1.1.414",
"rcedit": "^5.0.2",
"typescript": "^7.0.2"
},
"private": true,
"build": {
"appId": "com.smoothmyvideo.app",
"productName": "SmoothMyVideo",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"renderer/**/*",
"icon.ico",
"icon.png"
],
"extraResources": [
{
"from": "samples/example.mp4",
"to": "samples/example.mp4"
},
{
"from": "engine",
"to": "engine",
"filter": [
"**/*",
"!**/__pycache__/**",
"!runtime/**",
"!**/*.py",
"!requirements.txt",
"!trt_cache/**",
"!trt_cache_safe_to_delete/**",
"!*.onnx",
"!*.onnx.data",
"!onnx/tmp_*/**",
"!onnx/*.tmp",
"!**/*.pkl",
"!**/*.pth",
"!*.engine",
"!runtime_*_bak/**",
"!rtxvideo/nvngx_vsr.dll",
"!rtxvideo/nvngx_truehdr.dll",
"!dlssnr/nvngx_dlssnr.dll",
"!dlssnr/nvngx_dlss.dll",
"!**/build_src/**",
"!**/*.log",
"!nvoffruc/NvOFFRUC.dll",
"!nvoffruc/cudart64_110.dll",
"!dvtools/**",
"!hptools/**"
]
}
],
"extraFiles": [
"LICENSE",
"THIRD_PARTY_NOTICES.md"
],
"win": {
"target": "dir",
"icon": "icon.ico"
}
}
}