-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
112 lines (112 loc) · 3.85 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "ampcast",
"version": "0.9.10",
"description": "Ampcast music player",
"homepage": "https://ampcast.app",
"author": {
"name": "rekkyrosso",
"email": "[email protected]"
},
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:dev": "webpack --env mode=development --progress",
"build:docker": "webpack --env mode=production --env target=docker",
"build:pwa": "webpack --env mode=production --env target=pwa",
"build:electron": "webpack --env mode=production --env target=electron",
"start:dev": "node server.js --dev",
"start:prod": "node server.js",
"start:docker": "node server.js --host 0.0.0.0",
"stats": "webpack --profile --json > stats.json"
},
"license": "GPL-3.0",
"dependencies": {
"@ctrl/tinycolor": "^4.0.1",
"@tidal-music/auth": "^1.3.3",
"@tidal-music/catalogue": "^0.4.0",
"@tidal-music/common": "^0.1.5",
"@tidal-music/player": "^0.5.0",
"@tidal-music/playlist": "^0.2.0",
"@tidal-music/search": "^0.4.0",
"@tidal-music/user": "^0.2.0",
"audiomotion-analyzer": "^4.0.0",
"butterchurn": "^3.0.0-beta.4",
"butterchurn-presets": "3.0.0-beta.4",
"colorjs.io": "^0.5.0",
"colorthief": "^2.6.0",
"d3-array": "^3.2.0",
"d3-interpolate": "^3.0.1",
"d3-scale": "^4.0.2",
"detect-browser": "^5.3.0",
"dexie": "^4.0.1",
"fullscreen-api-polyfill": "^1.1.2",
"get-youtube-id": "^1.0.1",
"hls.js": "^1.4.10",
"idb-keyval": "^6.2.0",
"is-electron": "^2.2.2",
"jsfft": "^0.0.4",
"md5": "^2.3.0",
"music-metadata": "^10.5.0",
"nanoid": "^5.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.0",
"rxjs": "^7.5.6",
"shaka-player": "^4.10.3",
"spotify-web-api-js": "^1.5.2",
"string-score": "^1.0.1",
"unidecode": "^1.0.1",
"youtube-player": "^5.5.2"
},
"devDependencies": {
"@jellyfin/sdk": "^0.11.0",
"@types/apple-music-api": "^0.4.1",
"@types/d3-array": "^3.0.3",
"@types/d3-interpolate": "^3.0.1",
"@types/d3-scale": "^4.0.2",
"@types/gapi": "^0.0.47",
"@types/gapi.auth2": "^0.0.61",
"@types/gapi.client": "^1.0.5",
"@types/gapi.client.youtube-v3": "^0.0.4",
"@types/google.accounts": "^0.0.15",
"@types/md5": "^2.3.2",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/spotify-api": "^0.0.25",
"@types/spotify-web-playback-sdk": "^0.1.15",
"@types/unidecode": "^0.1.1",
"@types/wicg-file-system-access": "^2023.10.0",
"@types/wicg-mediasession": "^1.1.3",
"@types/youtube": "^0.1.0",
"@types/youtube-player": "^5.5.6",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"autoprefixer": "^10.4.13",
"copy-webpack-plugin": "^12.0.0",
"css-loader": "^7.1.1",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-webpack-plugin": "^4.0.0",
"mini-css-extract-plugin": "^2.6.1",
"minimist": "^1.2.8",
"musickit-typescript": "^1.2.4",
"postcss": "^8.4.19",
"postcss-loader": "^8.0.0",
"sass": "^1.54.9",
"sass-loader": "^16.0.0",
"ts-loader": "^9.3.1",
"type-fest": "^4.0.0",
"typescript": "^5.5.3",
"webpack": "^5.74.0",
"webpack-cli": "^5.0.0"
},
"devEngines": {
"node": ">=20.x",
"npm": ">=10.x"
},
"browserslist": [
"> 1%"
]
}