forked from jellyfin/jellyfin-chromecast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 934 Bytes
/
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
{
"name": "jellyfin-chromecast",
"version": "3.0.0",
"description": "Cast receiver for Jellyfin",
"license": "GPL-2.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/jellyfin/jellyfin-chromecast.git"
},
"bugs": {
"url": "https://github.com/jellyfin/jellyfin-chromecast/issues"
},
"homepage": "https://jellyfin.org/",
"dependencies": {
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"file-loader": "^6.0.0",
"webpack": "4.42.1",
"webpack-cli": "^3.3.11"
},
"scripts": {
"prepare": "webpack --config webpack.config.js --mode=production",
"build:production": "webpack --config webpack.config.js --mode=production",
"build:development": "webpack --config webpack.config.js --mode=development",
"lint": "eslint ./src/"
},
"devDependencies": {
"eslint": "6.8.0",
"eslint-plugin-eslint-comments": "^3.1.2"
}
}