@finclusionaibuild/liveness-sdk 1.0.0

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/package.json ADDED
@@ -0,0 +1,75 @@
1
+ {
2
+ "name": "@finclusionaibuild/liveness-sdk",
3
+ "version": "1.0.0",
4
+ "description": "AWS Face Liveness SDK for React applications - JobsPro implementation",
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
+ },
19
+ "./styles.css": "./dist/styles.css"
20
+ },
21
+ "scripts": {
22
+ "build:css": "tailwindcss -i ./src/styles.css -o ./dist/tailwind-temp.css --minify=false",
23
+ "build:js": "rollup -c rollup.config.mjs",
24
+ "build": "npm run build:css && npm run build:js",
25
+ "clean": "node -e \"const fs=require('fs');const path='./dist/tailwind-temp.css';if(fs.existsSync(path))fs.unlinkSync(path);\"",
26
+ "dev": "rollup -c -w",
27
+ "type-check": "tsc --noEmit",
28
+ "prepublishOnly": "npm run build && npm run clean"
29
+ },
30
+ "keywords": [
31
+ "liveness",
32
+ "face-detection",
33
+ "aws",
34
+ "amplify",
35
+ "biometric",
36
+ "verification",
37
+ "finclusion",
38
+ "react"
39
+ ],
40
+ "author": "Finclusion",
41
+ "license": "MIT",
42
+ "repository": {
43
+ "type": "git",
44
+ "url": "https://github.com/finclusion/liveness-sdk.git"
45
+ },
46
+ "peerDependencies": {
47
+ "react": "^18.0.0",
48
+ "react-dom": "^18.0.0",
49
+ "@tanstack/react-query": "^5.39.0"
50
+ },
51
+ "dependencies": {
52
+ "@aws-amplify/ui-react-liveness": "^3.1.15",
53
+ "@aws-amplify/ui-react": "^6.0.0"
54
+ },
55
+ "devDependencies": {
56
+ "@rollup/plugin-commonjs": "^28.0.1",
57
+ "@rollup/plugin-json": "^6.1.0",
58
+ "@rollup/plugin-node-resolve": "^15.2.3",
59
+ "@rollup/plugin-typescript": "^12.1.0",
60
+ "@types/react": "^18.3.5",
61
+ "@types/react-dom": "^18.3.0",
62
+ "@typescript-eslint/eslint-plugin": "^8.3.0",
63
+ "@typescript-eslint/parser": "^8.3.0",
64
+ "autoprefixer": "^10.4.20",
65
+ "eslint": "^9.9.1",
66
+ "eslint-plugin-react": "^7.35.0",
67
+ "eslint-plugin-react-hooks": "^5.1.0",
68
+ "postcss": "^8.4.47",
69
+ "rollup": "^4.18.0",
70
+ "rollup-plugin-dts": "^6.1.0",
71
+ "rollup-plugin-postcss": "^4.0.2",
72
+ "tailwindcss": "^3.4.13",
73
+ "typescript": "^5.5.3"
74
+ }
75
+ }