-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 2.05 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
{
"name": "media-toolkit",
"version": "1.0.1",
"description": "A powerful media processing tool built with Electron, React, and FFmpeg",
"type": "module",
"main": "dist-electron/main.js",
"author": "typeofNaN",
"license": "MIT",
"homepage": "https://github.com/typeofNaN/media-toolkit",
"scripts": {
"dev": "tsx scripts/set-dev-icon.ts && vite",
"build": "tsc && vite build && electron-builder --publish always",
"build:vite": "tsc && vite build",
"build:mac": "tsc && vite build && electron-builder --mac",
"build:win": "tsc && vite build && electron-builder --win",
"build:linux": "tsc && vite build && electron-builder --linux",
"generate-icons": "tsx scripts/generate-icons.ts",
"preview": "vite preview",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"lint:fix": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css}\"",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@ffprobe-installer/ffprobe": "^1.4.1",
"fluent-ffmpeg": "^2.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@resvg/resvg-js": "^2.6.2",
"@types/fluent-ffmpeg": "^2.1.24",
"@types/node": "^20.10.0",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.16",
"electron": "^28.1.0",
"electron-builder": "^24.9.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"icon-gen": "^5.0.0",
"postcss": "^8.4.32",
"prettier": "^3.1.1",
"prettier-plugin-css-order": "^2.2.0",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^3.4.0",
"tsx": "^4.21.0",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vite-plugin-electron": "^0.28.0",
"vite-plugin-electron-renderer": "^0.14.5"
}
}