hephaestus/auth-proxy/package.json

25 lines
597 B
JSON
Raw Permalink Normal View History

2026-09-12 00:07:28 +02:00
{
"name": "hephaestus-auth-proxy",
"version": "0.1.0",
"description": "OIDC provider that authenticates users by Bitcoin Cash wallet signature",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts"
},
"dependencies": {
"@bitauth/libauth": "^3.1.0-next.4",
"@fastify/formbody": "^8.0.1",
"@fastify/static": "^8.0.3",
"fastify": "^5.1.0",
"jose": "^5.9.6"
},
"devDependencies": {
"@types/node": "^22.9.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
}
}