-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.21 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.21 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
{
"name": "clipforge",
"version": "1.0.0",
"description": "Simple desktop video editor for quick trims and exports",
"main": "main.js",
"author": "ClipForge Team",
"homepage": "https://github.com/yourusername/clipforge",
"scripts": {
"build": "webpack --mode development",
"build:app": "webpack --mode production",
"start": "npm run build && electron .",
"dev": "npm run build && electron .",
"package": "electron-builder",
"package:mac": "electron-builder --mac",
"dist": "npm run build:app && npm run package"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"ffmpeg-static": "^5.2.0",
"ffprobe-static": "^3.1.0",
"fluent-ffmpeg": "^2.1.3",
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-react": "^7.28.5",
"babel-loader": "^10.0.0",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"css-loader": "^7.1.2",
"electron": "^38.4.0",
"electron-builder": "^26.0.12",
"html-webpack-plugin": "^5.6.4",
"style-loader": "^4.0.0",
"wait-on": "^9.0.1",
"webpack": "^5.102.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
}
}