forked from tdoukinitsas/liveplay
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.15 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.15 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "liveplay",
"version": "1.2.4",
"description": "Audio cue playback application for live events",
"main": "electron/main.js",
"type": "commonjs",
"scripts": {
"dev": "concurrently \"npm run dev:nuxt\" \"npm run dev:electron\"",
"dev:nuxt": "nuxt dev",
"dev:electron": "wait-on http://localhost:3000 && electron .",
"build": "cross-env NODE_ENV=production nuxt generate",
"build:electron": "cross-env NODE_ENV=production nuxt generate && electron-builder",
"electron:build": "electron-builder",
"generate": "cross-env NODE_ENV=production nuxt generate",
"preview": "nuxt preview",
"postinstall": "electron-builder install-app-deps"
},
"keywords": [
"electron",
"audio",
"cue",
"playback",
"live"
],
"author": {
"name": "Thomas Doukinitsas",
"email": "creativityfilms@gmail.com"
},
"license": "AGPL-3.0-only",
"devDependencies": {
"@nuxt/types": "^2.17.3",
"@types/node": "^20.10.5",
"concurrently": "^8.2.2",
"cross-env": "^10.1.0",
"electron": "^28.0.0",
"electron-builder": "^24.9.1",
"nuxt": "^3.9.0",
"sass": "^1.69.5",
"typescript": "^5.3.3",
"vue": "^3.4.3",
"vue-router": "^4.2.5",
"wait-on": "^7.2.0"
},
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"electron-updater": "^6.6.2",
"express": "^4.18.2",
"ffmpeg-static": "^5.2.0",
"fluent-ffmpeg": "^2.1.3",
"howler": "^2.2.4",
"material-symbols": "^0.39.1",
"play-dl": "^1.9.7",
"uuid": "^9.0.1",
"wavesurfer.js": "^7.5.0",
"youtube-mp3-downloader": "^0.7.11",
"youtube-search-api": "^2.0.1",
"yt-dlp-wrap": "^2.3.12"
},
"build": {
"appId": "com.liveplay.app",
"productName": "LivePlay",
"directories": {
"output": "dist-electron"
},
"files": [
".output/**/*",
"electron/**/*",
"assets/**/*",
"locales/**/*"
],
"fileAssociations": [
{
"ext": "liveplay",
"name": "LivePlay Project",
"description": "LivePlay Project File",
"role": "Editor",
"icon": "assets/icons/4092w/liveplay-document@4092px.png"
}
],
"publish": {
"provider": "github",
"owner": "tdoukinitsas",
"repo": "liveplay"
},
"win": {
"target": [
{
"target": "nsis",
"arch": ["x64"]
}
],
"icon": "assets/icons/4092w/app_icon_darkmode@4092px.png",
"publisherName": "Thomas Doukinitsas"
},
"mac": {
"target": [
{
"target": "dmg",
"arch": ["x64", "arm64"]
},
{
"target": "zip",
"arch": ["x64", "arm64"]
}
],
"icon": "assets/icons/4092w/app_icon_darkmode@4092px.png",
"category": "public.app-category.music"
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": ["x64"]
},
{
"target": "deb",
"arch": ["x64"]
},
{
"target": "rpm",
"arch": ["x64"]
}
],
"icon": "assets/icons/4092w/app_icon_darkmode@4092px.png",
"category": "AudioVideo"
}
}
}