-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
42 lines (42 loc) · 1.16 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
{
"name": "janus-ftl-player",
"version": "0.0.11-alpha",
"description": "Simple player for Janus FTL streams",
"main": "dist/main.js",
"types": "dist/index.d.ts",
"files": [
"package.json",
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/index.html",
"LICENSE.md",
"README.md"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack serve --mode development --open",
"watch": "webpack --config webpack.config.js --mode development --watch",
"build": "webpack --config webpack.config.js --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Glimesh/janus-ftl-player.git"
},
"author": "Hayden McAfee <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Glimesh/janus-ftl-player/issues"
},
"homepage": "https://github.com/Glimesh/janus-ftl-player#readme",
"devDependencies": {
"@webpack-cli/serve": "^1.2.1",
"exports-loader": "^1.1.0",
"ts-loader": "^8.0.2",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"janus-gateway-mirror": "^1.1.2"
}
}