forked from rctoris/mjpegcanvasjs
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.64 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
{
"name": "@techming/web-video-canvas",
"homepage": "http://robotwebtools.org",
"description": "Display a Video Stream from the ROS web_video_server Inside of a HTML5 Canvas",
"version": "0.2.1",
"license": "BSD-3-Clause",
"repository": "https://github.com/Techming/web-video-canvas",
"bugs": {
"url": "https://github.com/Techming/web-video-canvas/issues"
},
"private": false,
"main": "./build/webvideocanvas.js",
"files": [
"build"
],
"types": "./build/webvideocanvas.d.ts",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "grunt build",
"doc": "grunt doc",
"dev": "grunt dev"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"babel-loader": "^9.1.0",
"babelify": "^10.0.0",
"core-js": "^2.6.12",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"grunt": "~0.4.1",
"grunt-contrib-clean": "~0.4.0",
"grunt-contrib-concat": "~0.1.3",
"grunt-contrib-jshint": "~0.1.1",
"grunt-contrib-watch": "~0.3.1",
"grunt-jsdoc": "^2.4.0",
"grunt-webpack": "^5.0.0",
"prettier": "2.7.1",
"terser-webpack-plugin": "^5.3.6",
"webpack": "^5.75.0"
},
"keywords": [
"ROS",
"ros",
"mjpeg",
"png",
"ros_compressed",
"webvideocanvas",
"robot",
"mjpeg_server",
"web_video_server"
],
"author": "Russell Toris <[email protected]> (http://wpi.edu/~rctoris/)",
"contributors": [
"Haoming Meng <[email protected]> (https://github.com/Techming)"
],
"dependencies": {
"eventemitter2": "^6.4.9"
}
}