-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.36 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
{
"name": "networked-aframe",
"version": "0.1.0",
"description": "SFU mediasoup adapter for NAF",
"main": "src/index.js",
"license": "MIT",
"bugs": {
"url": "https://github.com/Vesper0704/naf-mediasoup-adapter/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Vesper0704/naf-mediasoup-adapter"
},
"scripts": {
"dist": "npm run dist:min && npm run dist:max",
"dist:max": "webpack --config webpack.config.js",
"dist:min": "webpack --config webpack.prod.config.js",
"start": "node ./server/index.js"
},
"dependencies": {
"express": "^4.17.3",
"socket.io": "^4.5.3",
"mediasoup": "3.10.5"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"babel-loader": "^8.2.5",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-middleware": "^5.3.3"
},
"lint-staged": {
"*.js": "eslint",
"*.html": "prettier --write"
},
"keywords": [
"3d",
"aframe",
"cardboard",
"components",
"multiplayer",
"networked",
"networking",
"oculus",
"three",
"three.js",
"rift",
"quest",
"webrtc",
"social",
"vive",
"vr",
"web-components",
"webvr"
],
"engines": {
"node": ">= 16.14.0",
"npm": ">= 4.0.5"
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}