UNPKG

vec-idp-web-sdk

Version:

VECU Identity Verification Web SDK - A secure, easy-to-integrate identity verification solution

79 lines 2.29 kB
{ "name": "vec-idp-web-sdk", "version": "1.0.0", "description": "VECU Identity Verification Web SDK - A secure, easy-to-integrate identity verification solution", "main": "dist/index.js", "module": "dist/index.esm.js", "browser": "dist/index.umd.js", "types": "dist/index.d.ts", "files": [ "dist", "README.md", "LICENSE" ], "keywords": [ "identity-verification", "kyc", "know-your-customer", "idv", "identity", "verification", "vecu", "sdk", "web-sdk", "socure", "document-verification", "liveness-detection" ], "homepage": "https://github.com/VehicleCustody/vecu-idv-web-sdk#readme", "bugs": { "url": "https://github.com/VehicleCustody/vecu-idv-web-sdk/issues" }, "repository": { "type": "git", "url": "git+https://github.com/VehicleCustody/vecu-idv-web-sdk.git" }, "sideEffects": false, "engines": { "node": ">=14" }, "author": "VECU Team <dev@vecu.com>", "license": "MIT", "devDependencies": { "@rollup/plugin-commonjs": "^25.0.7", "@rollup/plugin-json": "^6.0.1", "@rollup/plugin-node-resolve": "^15.2.3", "@rollup/plugin-terser": "^0.4.4", "@rollup/plugin-typescript": "^11.1.5", "@testing-library/jest-dom": "^6.6.3", "@types/node": "^20.10.5", "@typescript-eslint/eslint-plugin": "^8.38.0", "@typescript-eslint/parser": "^8.38.0", "@vitest/coverage-v8": "^1.1.0", "eslint": "^8.56.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.1.2", "jsdom": "^26.1.0", "prettier": "^3.1.1", "rollup": "^4.9.1", "tslib": "^2.6.2", "typedoc": "^0.25.4", "typescript": "^5.3.3", "vitest": "^1.1.0" }, "scripts": { "dev": "rollup -c -w", "build": "rollup -c", "build:bundle": "rollup -c rollup.config.bundle.js", "build:all": "npm run build && npm run build:bundle", "test": "vitest", "test:coverage": "vitest --coverage", "lint": "eslint src --ext .ts,.tsx", "format": "prettier --write \"src/**/*.{ts,tsx}\"", "typecheck": "tsc --noEmit", "docs": "typedoc", "serve:example": "npx http-server . -p 8080 -c-1", "dev:example": "npm run build && npm run serve:example", "test:socure": "node examples/test-socure-node.js" } }