@didtools/key-webauthn
Version:
Implements support to authenticate, authorize and verify blocks produced by webauthn/passkey compatible hardware authenticators and OS/software implementations.
67 lines • 1.99 kB
JSON
{
"name": "@didtools/key-webauthn",
"version": "2.0.2",
"author": "3Box Labs",
"license": "(Apache-2.0 OR MIT)",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=14.14"
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/ceramicnetwork/js-did.git"
},
"keywords": [
"DID",
"identity",
"did-provider",
"self-sovereign",
"passkey",
"webauthn"
],
"bugs": {
"url": "https://github.com/ceramicnetwork/js-did/issues"
},
"homepage": "https://github.com/ceramicnetwork/js-did#readme",
"devDependencies": {
"@types/varint": "^6.0.3",
"did-jwt": "^7.4.5",
"esbuild": "^0.19.9",
"typescript": "^5.3.2",
"did-session": "3.1.0",
"dids": "5.0.2"
},
"dependencies": {
"@ipld/dag-cbor": "^9.0.6",
"@noble/curves": "^1.2.0",
"caip": "^1.1.0",
"cborg": "^4.0.5",
"multiformats": "^13.0.0",
"uint8arrays": "^5.0.1",
"varint": "^6.0.0",
"@didtools/cacao": "3.0.1"
},
"scripts": {
"build:clean": "del dist",
"build:js": "swc src -d ./dist --config-file ../../.swcrc",
"build:types": "tsc --emitDeclarationOnly --skipLibCheck",
"build": "pnpm run build:clean && pnpm run build:types && pnpm run build:js",
"lint": "eslint src --fix",
"test": "node --experimental-vm-modules ../../node_modules/jest/bin/jest.js",
"debug": "node inspect --experimental-vm-modules ../../node_modules/jest/bin/jest.js",
"test:ci": "pnpm run test --ci --coverage",
"size": "./node_modules/.bin/size-limit",
"analyze": "./node_modules/.bin/size-limit --why",
"demo": "esbuild --bundle --format=esm --outfile=sample/build.js sample/index.ts --servedir=sample/",
"publish:demo": "esbuild --bundle --format=esm --outfile=sample/build.js sample/index.ts && surge sample/ didtoolswn.surge.sh"
}
}