forked from mozilla/naf-janus-adapter
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
30 lines (30 loc) · 972 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
{
"name": "@networked-aframe/naf-janus-adapter",
"version": "4.2.0",
"description": "networked-aframe Janus network adapter",
"main": "src/index.js",
"license": "MPL-2.0",
"repository": "github:networked-aframe/naf-janus-adapter",
"devDependencies": {
"@babel/core": "^7.23.9",
"babel-loader": "^9.1.3",
"eslint": "^8.56.0",
"np": "^8.0.4",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"debug": "^4.3.4",
"@networked-aframe/minijanus": "0.7.0",
"sdp": "^3.2.0"
},
"scripts": {
"start": "webpack-dev-server --open --config webpack.dev.js",
"build": "npm run build:dev && npm run build:prod",
"build:dev": "webpack --config webpack.dev.js",
"build:prod": "webpack --config webpack.prod.js",
"lint": "eslint 'src/**/*.js'",
"release": "npm run build && git commit --allow-empty -am 'update builds' && git push && np && git push"
}
}