-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.82 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
{
"name": "react-face-detection-hook",
"description": "React face detection hook using @mediapipe/face_detection, @mediapipe/camera_utils and react-webcam",
"version": "1.0.2",
"author": "Luiz Carlos Ferreira",
"license": "MIT",
"main": "build/index.js",
"files": [
"build"
],
"types": "build/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/luicfrr/react-face-detection-hook.git"
},
"bugs": {
"url": "https://github.com/luicfrr/react-face-detection-hook/issues"
},
"homepage": "https://github.com/luicfrr/react-face-detection-hook",
"scripts": {
"lint": "eslint --quiet --fix --ext .js,.ts,.tsx,.jsx .",
"postinstall": "patch-package",
"dev": "concurrently \"tsc -w\" \"tsc-alias -w\"",
"build": "tsc && tsc-alias",
"release": "standard-version"
},
"dependencies": {
"@mediapipe/camera_utils": "^0.3.1675466862",
"@mediapipe/face_detection": "^0.4.1646425229",
"react-webcam": "^7.0.1",
"standard-version": "^9.5.0"
},
"devDependencies": {
"concurrently": "^8.0.1",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"eslint": "^8.40.0",
"eslint-config-google": "^0.14.0",
"eslint-config-next": "13.4.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"patch-package": "^7.0.0",
"postinstall-postinstall": "^2.1.0",
"tsc-alias": "^1.8.6",
"typescript": "5.0.4"
},
"keywords": [
"React",
"Library",
"Typescript",
"Face Detection",
"Face",
"Hooks",
"@mediapipe/face_detection",
"Machine Learning",
"MediaPipe"
],
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
}
}