-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
67 lines (67 loc) · 1.88 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
{
"name": "ws-avc-player",
"version": "2.0.2",
"main": "lib/WSAvcPlayer.js",
"files": [
"lib/",
"AUTHORS",
"LICENSE",
"README.md"
],
"scripts": {
"example": "node example/index.js",
"build": "cross-env NODE_ENV=production webpack",
"build:dev": "webpack",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/matijagaspar/ws-avc-player"
},
"keywords": [
"h264",
"nal",
"live",
"broadcast",
"streaming",
"video",
"websocket",
"raspberry"
],
"author": "Matija Gaspar (http://github.com/matijagaspar)",
"license": "MIT",
"bugs": {
"url": "https://github.com/matijagaspar/ws-avc-player/issues"
},
"description": "Stream realtime h264 video directly to the browser. Ideal for raspberry pi. Comes with a browser player, and streaming server.\n Based of h264-live-player that uses Broadway Decoder.",
"dependencies": {
"debug": "^4.1.1",
"stream-split": "^1.1.0",
"string-replace-loader": "^2.2.0",
"sylvester.js": "^0.1.1"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-stage-1": "^7.0.0",
"@clusterws/cws": "^0.15.2",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"conventional-changelog-cli": "^2.0.25",
"copy-webpack-plugin": "^5.0.4",
"core-js": "3",
"cross-env": "^6.0.3",
"eslint": "^6.5.1",
"eslint-import-resolver-webpack": "^0.11.1",
"expres": "^0.0.5",
"file-loader": "^4.2.0",
"raw-loader": "^3.1.0",
"url-loader": "^2.2.0",
"webpack": "^4.41.2",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.9"
}
}