forked from nightborn-be/react-use-faceapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.68 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
{
"name": "react-use-faceapi",
"version": "1.0.1",
"description": "This repository has been created to simplify the usage of the face-api package in React, this was created when creating a POC for a client to win a RFP, but we thought we could share this to make life easier for everyone. The example we supplied is pretty basic, but you're able to create really complex and complete applications with the use of your creativity.",
"author": "m-Nightly",
"license": "MIT",
"repository": "nightborn-be/react-use-faceapi",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"files": [
"dist"
],
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"prepare": "yarn run build",
"predeploy": "cd example && yarn install && yarn run build",
"deploy": "gh-pages -d example/build",
"publish": "npm publish"
},
"dependencies": {
"face-api.js": "^0.22.2"
},
"peerDependencies": {
"react": "^16.9.0 || ^17.x || ^18.x"
},
"devDependencies": {
"@babel/core": "7.18.6",
"@babel/runtime": "7.18.6",
"@testing-library/react-hooks": "3.2.1",
"@types/jest": "28.1.4",
"@types/react": "18.0.15",
"cross-env": "5.2.1",
"gh-pages": "2.2.0",
"react": "16.14.0",
"react-scripts": "3.4.4",
"react-test-renderer": "16.14.0",
"rollup": "1.32.1",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "9.3.4",
"rollup-plugin-node-resolve": "4.2.4",
"rollup-plugin-peer-deps-external": "2.2.2",
"rollup-plugin-typescript2": "0.19.3",
"rollup-plugin-url": "2.2.4",
"typescript": "3.8.3"
}
}