This repository has been archived by the owner on Aug 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.06 KB
/
package.json
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
{
"name": "mcpodcast",
"version": "0.7.0",
"main": "electron/index.js",
"dependencies": {
"@electron/remote": "^2.0.7",
"@fortawesome/fontawesome-free": "^6.0.0",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^6.0.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@testing-library/jest-dom": "^5.11.0",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^14.0.0",
"ffmpeg-static": "^5.0.0",
"fluent-ffmpeg": "^2.1.2",
"mp3-duration": "^1.1.0",
"node-id3": "^0.2.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-dropzone": "^14.0.0",
"react-modal": "^3.14.3",
"react-scripts": "5.0.1",
"styled-components": "^6.0.0",
"tailwindcss": "^3.0.0",
"twin.macro": "^2.6.2"
},
"scripts": {
"dev": "concurrently 'npm:react' 'npm:electron:dev'",
"electron:dev": "cross-env ELECTRON_START_URL=http://localhost:3000 electron . dev",
"react": "cross-env BROWSER=none react-scripts start",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"postinstall": "electron-builder install-app-deps",
"prettier": "prettier . --write"
},
"build": {
"appId": "com.yamanickill.mcpodcast",
"productName": "McPodcast",
"mac": {
"category": "public.app-category.utilities"
},
"dmg": {
"icon": false
},
"linux": {
"target": [
"AppImage"
],
"category": "Utility"
},
"extraMetadata": {
"main": "electron/index.js"
},
"files": [
"electron/**/*",
"src/utils.js"
],
"asarUnpack": [
"**/app/node_modules/ffmpeg-static/*"
]
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
"last 1 electron version"
]
},
"devDependencies": {
"concurrently": "8.2.0",
"cross-env": "7.0.3",
"electron": "25.5.0",
"electron-builder": "24.6.3",
"prettier": "3.0.1"
},
"homepage": "./"
}