-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.56 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
{
"name": "melodix",
"version": "1.1.0",
"description": "Melodix — Modern Music Player with Synchronized Lyrics",
"author": {
"name": "qvkap",
"email": "qvkapp@gmail.com"
},
"license": "GPL-3.0-or-later",
"main": "dist-electron/main.js",
"scripts": {
"start": "electron . --enable-features=UseOzonePlatform,WaylandWindowDecorations --ozone-platform=wayland",
"dev": "npm run build:electron && concurrently \"vite --port 5173 --strictPort\" \"wait-on tcp:5173 && cross-env VITE_DEV_SERVER_URL=http://localhost:5173 electron . --enable-features=UseOzonePlatform,WaylandWindowDecorations --ozone-platform=wayland\"",
"build:electron": "tsc -p tsconfig.electron.json",
"build": "tsc -p tsconfig.electron.json && vite build && electron-builder",
"preview": "vite preview"
},
"dependencies": {
"@capacitor/android": "^8.5.1",
"@capacitor/core": "^8.5.1",
"@capacitor/ios": "^8.5.1",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@fontsource/inter": "^5.3.0",
"@mui/icons-material": "^5.15.15",
"@mui/material": "^5.15.15",
"electron-store": "^8.2.0",
"electron-updater": "^6.8.9",
"hls.js": "^1.7.2",
"howler": "^2.2.4",
"music-metadata": "^11.15.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"youtubei.js": "^18.0.0"
},
"devDependencies": {
"@capacitor/cli": "^8.5.1",
"@types/howler": "^2.2.11",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.0",
"concurrently": "^8.2.2",
"cross-env": "^10.1.0",
"electron": "^30.0.1",
"electron-builder": "^24.13.3",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-plugin-electron": "^0.28.4",
"wait-on": "^7.2.0"
},
"build": {
"appId": "com.melodix.app",
"productName": "Melodix",
"files": [
"dist-electron/**/*",
"dist-react/**/*",
"package.json"
],
"publish": [
{
"provider": "github",
"owner": "qvkap",
"repo": "Melodix"
}
],
"linux": {
"target": [
"AppImage",
"deb"
],
"maintainer": "qvkap <qvkapp@gmail.com>",
"category": "Audio"
},
"extraResources": [
{
"from": "bin",
"to": "bin"
}
],
"win": {
"target": [
"portable",
"zip"
],
"signAndEditExecutable": false
},
"mac": {
"target": [
"dmg",
"zip"
],
"identity": null
}
},
"allowScripts": {
"electron@30.5.1": true,
"esbuild@0.21.5": true
}
}