UNPKG

@teamhanko/hanko-frontend-sdk

Version:

A package for simplifying UI integration with the Hanko API. It is meant for use in browsers only.

71 lines (70 loc) 1.91 kB
{ "name": "@teamhanko/hanko-frontend-sdk", "version": "3.0.0", "private": false, "publishConfig": { "access": "public" }, "files": [ "dist" ], "type": "module", "source": "src/index.ts", "types": "dist/index.d.ts", "exports": { ".": { "require": "./dist/sdk.cjs", "types": "./dist/index.d.ts", "default": "./dist/sdk.modern.js" } }, "main": "./dist/sdk.cjs", "module": "./dist/sdk.module.js", "unpkg": "./dist/sdk.umd.js", "scripts": { "lint": "eslint 'src/**/*.ts'", "format": "pretty-quick --staged", "build": "microbundle --globals @github/webauthn-json=webauthnJson --tsconfig tsconfig.prod.json", "dev": "microbundle watch", "docs": "jsdoc -r -c jsdoc.json -d ./.generated/docs -R README.md --pedantic", "test": "jest --coverage" }, "description": "A package for simplifying UI integration with the Hanko API. It is meant for use in browsers only.", "repository": "github:teamhanko/hanko", "author": "Hanko GmbH <developers@hanko.io>", "license": "MIT", "keywords": [ "hanko", "passkey", "webauthn", "passcode", "password", "frontend", "client", "sdk" ], "homepage": "https://hanko.io", "devDependencies": { "@github/webauthn-json": "^2.1.1", "@types/jest": "^30.0.0", "@typescript-eslint/eslint-plugin": "^5.54.0", "better-docs": "^2.7.2", "eslint": "^8.52.0", "eslint-config-google": "^0.14.0", "eslint-config-preact": "^1.3.0", "eslint-config-prettier": "^10.1.8", "eslint-plugin-prettier": "^5.5.5", "eslint-plugin-promise": "^6.1.1", "jest": "^30.3.0", "jest-environment-jsdom": "^29.7.0", "js-cookie": "^3.0.8", "jsdoc": "3.6.11", "microbundle": "^0.15.1", "ts-jest": "^29.4.9", "ts-loader": "^9.5.7", "typescript": "^4.9.5" }, "dependencies": { "@types/js-cookie": "^3.0.3" } }