-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 2.92 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 2.92 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
{
"name": "make-video-small",
"version": "2.0.0",
"private": false,
"type": "module",
"description": "Professional AV1 Video Compression Studio",
"author": "Sahiljeet Singh Kalsi (GhostofWeb)",
"main": "dist-electron/main.js",
"repository": {
"type": "git",
"url": "https://github.com/ghostofweb/makevideosmall.git"
},
"scripts": {
"dev": "npm-run-all --parallel dev:react dev:electron",
"dev:react": "vite",
"dev:electron": "npm run transpile:electron && electron .",
"build": "npm run transpile:electron && tsc -b && vite build",
"transpile:electron": "tsc --project src/electron/tsconfig.json",
"dist:win": "npm run build && electron-builder --win --x64"
},
"dependencies": {
"electron-updater": "^6.8.3",
"systeminformation": "^5.31.1"
},
"devDependencies": {
"@tailwindcss/vite": "^4.2.1",
"@types/fs-extra": "^11.0.4",
"@types/node": "^25.3.0",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^5.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cross-env": "^10.0.0",
"electron": "^38.0.0",
"electron-builder": "^26.8.1",
"framer-motion": "^12.34.3",
"lucide-react": "^0.575.0",
"next-themes": "^0.4.6",
"npm-run-all": "^4.1.5",
"radix-ui": "^1.4.3",
"react": "^19.1.1",
"react-compare-slider": "^3.1.0",
"react-dom": "^19.1.1",
"recharts": "^3.7.0",
"shadcn": "^3.8.5",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.1",
"tw-animate-css": "^1.4.0",
"typescript": "~5.8.3",
"vite": "^7.1.2",
"xterm": "^5.3.0"
},
"build": {
"appId": "com.ghostofweb.makevideosmall",
"productName": "Make Video Small",
"directories": {
"output": "dist-installers"
},
"publish": [
{
"provider": "github",
"owner": "ghostofweb",
"repo": "makevideosmall"
}
],
"files": [
"dist-electron/**/*",
"dist-react/**/*",
"node_modules/**/*",
"package.json",
"public/**/*"
],
"extraResources": [
{
"from": "engine",
"to": "engine",
"filter": [
"**/*"
]
}
],
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"installerIcon": "public/logo.ico",
"uninstallerIcon": "public/logo.ico",
"installerHeaderIcon": "public/logo.ico",
"createDesktopShortcut": "always",
"license": "license.txt",
"artifactName": "MakeVideoSmall_Setup_v${version}.${ext}",
"runAfterFinish": true
},
"win": {
"icon": "public/logo.ico",
"target": "nsis"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Video",
"icon": "public/logo.png"
},
"mac": {
"target": [
"dmg"
],
"icon": "public/logo.png"
}
}
}