-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.97 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.97 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@aws-amplify/ui-react-liveness",
"version": "2.0.7",
"main": "dist/index.js",
"module": "dist/esm/index.mjs",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.mjs",
"require": "./dist/index.js"
},
"./styles.css": "./dist/styles.css"
},
"browser": {
"./styles.css": "./dist/styles.css"
},
"types": "dist/types/index.d.ts",
"sideEffects": [
"dist/**/*.css"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/aws-amplify/amplify-ui",
"directory": "packages/react-liveness"
},
"files": [
"dist",
"LICENSE"
],
"scripts": {
"build": "yarn build:rollup",
"build:rollup": "rollup --config",
"check:esm": "node --input-type=module --eval 'import \"@aws-amplify/ui-react-liveness\"'",
"clean": "rimraf dist node_modules",
"dev": "yarn build:rollup --watch",
"lint": "yarn typecheck && eslint src",
"prebuild": "rimraf dist",
"size": "yarn size-limit",
"test": "jest",
"test:ci": "yarn test && yarn check:esm",
"test:watch": "yarn test --watch",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"aws-amplify": "^5.0.1",
"react": ">= 16.14.0",
"react-dom": ">= 16.14.0"
},
"dependencies": {
"@aws-amplify/ui": "5.8.0",
"@aws-amplify/ui-react": "5.3.0",
"@aws-sdk/client-rekognitionstreaming": "3.398.0",
"@smithy/eventstream-serde-browser": "^2.0.4",
"@tensorflow-models/blazeface": "0.0.7",
"@tensorflow/tfjs-backend-cpu": "3.11.0",
"@tensorflow/tfjs-backend-wasm": "3.11.0",
"@tensorflow/tfjs-converter": "3.11.0",
"@tensorflow/tfjs-core": "3.11.0",
"@xstate/react": "3.0.0",
"classnames": "2.3.1",
"nanoid": "3.1.31",
"tslib": "2.4.1",
"xstate": "^4.33.6"
},
"devDependencies": {
"@aws-amplify/eslint-config-amplify-ui": "0.0.0",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-typescript": "^8.3.1",
"@size-limit/preset-big-lib": "^8.2.6",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.1",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^26.0.23",
"@types/jest-when": "^3.5.0",
"@types/react": "^17.0.2",
"blob-polyfill": "^7.0.20220408",
"eslint": "^8.44.0",
"jest": "^27.0.4",
"jest-canvas-mock": "^2.4.0",
"jest-websocket-mock": "^2.4.1",
"jest-when": "^3.5.1",
"mock-socket": "^9.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.70.0",
"rollup-plugin-node-externals": "^4.1.1",
"rollup-plugin-styles": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"size-limit": "^8.2.6",
"ts-jest": "^27.0.3",
"web-streams-polyfill": "^3.2.1"
},
"size-limit": [
{
"name": "FaceLivenessDetector",
"path": "dist/esm/index.mjs",
"import": "{ FaceLivenessDetector }",
"limit": "275 kB"
}
]
}