@oslojs/webauthn
Version:
Parse and verify Web Authentication data
46 lines • 1.1 kB
JSON
{
"name": "@oslojs/webauthn",
"type": "module",
"version": "1.0.0",
"description": "Parse and verify Web Authentication data",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"files": [
"/dist/"
],
"keywords": [
"auth",
"webauthn",
"passkey"
],
"repository": {
"type": "git",
"url": "https://github.com/oslo-project/webauthn"
},
"author": "pilcrowOnPaper",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.8.6",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"auri": "^2.0.0",
"eslint": "^8.51.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"dependencies": {
"@oslojs/asn1": "1.0.0",
"@oslojs/binary": "1.0.0",
"@oslojs/cbor": "1.0.0",
"@oslojs/crypto": "1.0.0",
"@oslojs/encoding": "1.0.0"
},
"scripts": {
"build": "rm -rf dist/* && tsc --project tsconfig.build.json",
"format": "prettier -w .",
"lint": "eslint src",
"test": "vitest run --sequence.concurrent"
}
}