-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.54 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.54 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
{
"name": "aio-converter",
"version": "1.0.0",
"description": "A comprehensive Windows-native media converter application with support for images, videos, and GIF processing",
"private": true,
"main": "electron/main.js",
"type": "commonjs",
"scripts": {
"dev": "cross-env NODE_ENV=development electron .",
"start": "npm run build && electron .",
"build": "cd frontend && npm run build",
"package": "node scripts/package-app.js",
"zip": "node scripts/make-zip.js",
"dist": "npm run build && npm run package && npm run zip",
"install:all": "npm install && cd frontend && npm install",
"lint": "cd frontend && npm run lint",
"lint:fix": "cd frontend && npm run lint:fix",
"clean": "rimraf frontend/node_modules node_modules dist temp",
"clean:build": "rimraf dist"
},
"devDependencies": {
"cross-env": "^7.0.3",
"electron": "^28.2.0",
"electron-packager": "^17.1.2",
"rimraf": "^6.0.1"
},
"workspaces": [
"frontend"
],
"repository": {
"type": "git",
"url": "https://github.com/salimuddin07/GIF-converter.git"
},
"keywords": [
"image-converter",
"gif-converter",
"video-converter",
"media-processing",
"react",
"nodejs",
"express",
"ffmpeg"
],
"author": "Salim",
"license": "MIT",
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"dependencies": {
"archiver": "^7.0.1",
"ffmpeg-static": "^5.2.0",
"fluent-ffmpeg": "^2.1.2",
"gif-encoder-2": "^1.0.5",
"pdf-parse": "^2.4.5",
"sharp": "^0.33.2"
}
}