-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 4.2 KB
/
Copy pathpackage.json
File metadata and controls
124 lines (124 loc) · 4.2 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "vapourkit-gui",
"version": "0.16.1",
"description": "Advanced GUI for VapourSynth and Video Upscaling",
"main": "dist/electron/main.js",
"scripts": {
"dev": "npm run build:electron && concurrently \"npm run dev:vite\" \"npm run dev:electron\"",
"dev:vite": "vite",
"dev:electron": "wait-on http://localhost:5173 && cross-env NODE_ENV=development electron .",
"build:electron": "tsc -p tsconfig.electron.json",
"build": "tsc && vite build && npm run build:electron",
"build:all": "npm run build && electron-builder --win --x64",
"build:both": "npm run build && electron-builder --win nsis 7z --x64 && tsx scripts/renamePortable.ts",
"build:setup": "npm run build && electron-builder --win nsis --x64",
"build:7z": "npm run build && electron-builder --win 7z --x64 && tsx scripts/renamePortable.ts",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:electron": "vitest run -c vitest.config.electron.ts",
"update-docs": "tsx scripts/updateModelsDocs.ts"
},
"keywords": [
"video",
"upscaling",
"super-resolution",
"VapourSynth",
"Restoration",
"AI"
],
"author": "Kim2091",
"license": "GPL 3.0",
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/iarna__toml": "^2.0.5",
"@types/node": "^22.5.0",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
"concurrently": "^9.0.1",
"cross-env": "^10.1.0",
"electron": "^32.0.1",
"electron-builder": "^26.0.12",
"postcss": "^8.4.45",
"tailwindcss": "^3.4.10",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^5.4.3",
"vitest": "^4.1.0",
"wait-on": "^8.0.1"
},
"dependencies": {
"@codemirror/lang-python": "^6.2.1",
"@codemirror/theme-one-dark": "^6.1.3",
"@iarna/toml": "^2.2.5",
"@uiw/react-codemirror": "^4.25.3",
"7zip-min": "^2.1.0",
"axios": "^1.12.2",
"electron-log": "^5.2.2",
"fs-extra": "^11.3.2",
"lucide-react": "^0.441.0",
"onnxruntime-node": "^1.23.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-resizable-panels": "^3.0.6",
"zod": "^4.3.6"
},
"build": {
"appId": "com.aivideoupscaler.gui",
"productName": "Vapourkit",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"include/models/**/*.onnx",
"include/plugins/**/*.7z",
"include/plugins/plugin_filters/**/*",
"include/scripts/**/*.7z",
"include/filter_templates/**/*.vkfilter",
"include/vapoursynth_template.vpy",
"include/stock-app-config.json",
"package.json",
"!data/**/*"
],
"asarUnpack": [
"include/models/**/*.onnx",
"include/plugins/**/*.7z",
"include/plugins/plugin_filters/**/*",
"include/scripts/**/*.7z",
"include/filter_templates/**/*.vkfilter",
"include/vapoursynth_template.vpy",
"include/stock-app-config.json",
"node_modules/7zip-bin/**/*"
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
},
{
"target": "7z",
"arch": [
"x64"
]
}
],
"icon": "build/icon.ico",
"artifactName": "Vapourkit-${version}-${name}.${ext}"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowElevation": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"artifactName": "Vapourkit-${version}-SETUP.${ext}"
}
}
}