did-jwks
Version:
A DID method that enables JWKS endpoints to be used as DID identifiers
69 lines • 1.62 kB
JSON
{
"name": "did-jwks",
"version": "1.0.0",
"description": "A DID method that enables JWKS endpoints to be used as DID identifiers",
"keywords": [
"did",
"decentralized-identifier",
"jwks",
"json-web-key-set",
"oidc",
"openid-connect",
"oauth2",
"jwt",
"json-web-token",
"verification",
"authentication",
"identity",
"resolver",
"did-resolver",
"did-method",
"did-jwks",
"cryptography",
"public-key",
"key-discovery"
],
"homepage": "https://github.com/catena-labs/did-jwks#readme",
"bugs": "https://github.com/catena-labs/did-jwks/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/catena-labs/did-jwks.git"
},
"license": "MIT",
"author": {
"name": "Catena Labs",
"url": "https://catenalabs.com"
},
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": "./dist/cli.js",
"files": [
"dist"
],
"dependencies": {
"valibot": "^1.1.0",
"web-identity-schemas": "^0.1.6"
},
"devDependencies": {
"standard-parse": "^0.3.0",
"tsdown": "^0.12.9",
"typescript": "^5.8.3",
"vitest": "^3.2.4",
"@repo/test-utils": "0.0.0"
},
"scripts": {
"build": "tsdown src/index.ts src/cli.ts --out-dir dist --format esm",
"clean": "git clean -xdf dist node_modules/.cache",
"cli": "pnpm run src/cli.ts",
"publint": "npx publint@latest",
"test": "vitest"
}
}