-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.17 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.17 KB
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
{
"name": "mirror",
"version": "1.0.0",
"description": "Simple test for your camera and microphone devices, just like a mirror.",
"main": "src/index.html",
"scripts": {
"start": "parcel src/index.html --open",
"build": "parcel build src/index.html --no-cache",
"clear-dist": "rm -rf docs/ && rm -rf dist/ && rm -rf .cache/",
"deploy": "./deploy.sh",
"test": "echo 'No tests' && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mazuh/mirror.git"
},
"keywords": [
"webrtc",
"audio",
"video",
"test"
],
"author": "Mazuh",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Mazuh/mirror/issues"
},
"homepage": "https://github.com/Mazuh/mirror#readme",
"devDependencies": {
"@babel/core": "^7.18.6",
"prettier": "^2.7.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@mediapipe/drawing_utils": "^0.3.1675466124",
"@mediapipe/face_detection": "^0.4.1646425229",
"@mediapipe/selfie_segmentation": "^0.1.1675465747",
"parcel-bundler": "^1.8.1",
"webrtc-adapter": "^8.2.1"
},
"resolutions": {
"@babel/preset-env": "7.13.8"
},
"private": true
}