@finclusionaibuild/liveness-sdk 1.0.5 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/styles.css.d.ts +2 -0
- package/package.json +84 -79
package/package.json
CHANGED
|
@@ -1,79 +1,84 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@finclusionaibuild/liveness-sdk",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "AWS Face Liveness SDK for React applications.",
|
|
5
|
-
"main": "./dist/index.cjs.js",
|
|
6
|
-
"module": "./dist/index.esm.js",
|
|
7
|
-
"types": "./dist/index.d.ts",
|
|
8
|
-
"files": [
|
|
9
|
-
"dist",
|
|
10
|
-
"README.md",
|
|
11
|
-
"LICENSE"
|
|
12
|
-
],
|
|
13
|
-
"exports": {
|
|
14
|
-
".": {
|
|
15
|
-
"types": "./dist/index.d.ts",
|
|
16
|
-
"import": "./dist/index.esm.js",
|
|
17
|
-
"require": "./dist/index.cjs.js",
|
|
18
|
-
"umd": "./dist/index.umd.js"
|
|
19
|
-
},
|
|
20
|
-
"./styles.css":
|
|
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
|
-
"eslint-plugin
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
|
|
79
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@finclusionaibuild/liveness-sdk",
|
|
3
|
+
"version": "1.0.7",
|
|
4
|
+
"description": "AWS Face Liveness SDK for React applications.",
|
|
5
|
+
"main": "./dist/index.cjs.js",
|
|
6
|
+
"module": "./dist/index.esm.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist",
|
|
10
|
+
"README.md",
|
|
11
|
+
"LICENSE"
|
|
12
|
+
],
|
|
13
|
+
"exports": {
|
|
14
|
+
".": {
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
16
|
+
"import": "./dist/index.esm.js",
|
|
17
|
+
"require": "./dist/index.cjs.js",
|
|
18
|
+
"umd": "./dist/index.umd.js"
|
|
19
|
+
},
|
|
20
|
+
"./styles.css": {
|
|
21
|
+
"types": "./dist/styles.css.d.ts",
|
|
22
|
+
"style": "./dist/styles.css",
|
|
23
|
+
"default": "./dist/styles.css"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build:css": "tailwindcss -i ./src/styles.css -o ./dist/tailwind-temp.css --minify=false",
|
|
28
|
+
"build:css-types": "node -e \"const fs=require('fs');const path='./dist/styles.css.d.ts';if(!fs.existsSync(path)){fs.writeFileSync(path,'declare const styles: string;\\nexport default styles;\\n','utf-8');}\"",
|
|
29
|
+
"build:js": "rollup -c rollup.config.mjs",
|
|
30
|
+
"build": "npm run build:css && npm run build:css-types && npm run build:js",
|
|
31
|
+
"clean": "node -e \"const fs=require('fs');const path='./dist/tailwind-temp.css';if(fs.existsSync(path))fs.unlinkSync(path);\"",
|
|
32
|
+
"dev": "rollup -c -w",
|
|
33
|
+
"type-check": "tsc --noEmit",
|
|
34
|
+
"prepublishOnly": "npm run build && npm run clean",
|
|
35
|
+
"release:patch": "npm version patch && npm publish --access public && git push && git push --tags",
|
|
36
|
+
"release:minor": "npm version minor && npm publish && git push && git push --tags",
|
|
37
|
+
"release:major": "npm version major && npm publish && git push && git push --tags"
|
|
38
|
+
},
|
|
39
|
+
"keywords": [
|
|
40
|
+
"liveness",
|
|
41
|
+
"face-detection",
|
|
42
|
+
"amplify",
|
|
43
|
+
"biometric",
|
|
44
|
+
"verification",
|
|
45
|
+
"finclusion",
|
|
46
|
+
"react"
|
|
47
|
+
],
|
|
48
|
+
"author": "Finclusion",
|
|
49
|
+
"license": "MIT",
|
|
50
|
+
"repository": {
|
|
51
|
+
"type": "git",
|
|
52
|
+
"url": "https://github.com/finclusion/liveness-sdk.git"
|
|
53
|
+
},
|
|
54
|
+
"peerDependencies": {
|
|
55
|
+
"@tanstack/react-query": "^5.39.0",
|
|
56
|
+
"react": "^18.0.0",
|
|
57
|
+
"react-dom": "^18.0.0"
|
|
58
|
+
},
|
|
59
|
+
"dependencies": {
|
|
60
|
+
"@aws-amplify/ui-react": "^6.0.0",
|
|
61
|
+
"@aws-amplify/ui-react-liveness": "^3.1.15"
|
|
62
|
+
},
|
|
63
|
+
"devDependencies": {
|
|
64
|
+
"@rollup/plugin-commonjs": "^28.0.1",
|
|
65
|
+
"@rollup/plugin-json": "^6.1.0",
|
|
66
|
+
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
67
|
+
"@rollup/plugin-replace": "^6.0.3",
|
|
68
|
+
"@rollup/plugin-typescript": "^12.1.0",
|
|
69
|
+
"@types/react": "^18.3.5",
|
|
70
|
+
"@types/react-dom": "^18.3.0",
|
|
71
|
+
"@typescript-eslint/eslint-plugin": "^8.3.0",
|
|
72
|
+
"@typescript-eslint/parser": "^8.3.0",
|
|
73
|
+
"autoprefixer": "^10.4.20",
|
|
74
|
+
"eslint": "^9.9.1",
|
|
75
|
+
"eslint-plugin-react": "^7.35.0",
|
|
76
|
+
"eslint-plugin-react-hooks": "^5.1.0",
|
|
77
|
+
"postcss": "^8.4.47",
|
|
78
|
+
"rollup": "^4.18.0",
|
|
79
|
+
"rollup-plugin-dts": "^6.1.0",
|
|
80
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
81
|
+
"tailwindcss": "^3.4.13",
|
|
82
|
+
"typescript": "^5.5.3"
|
|
83
|
+
}
|
|
84
|
+
}
|