Matthieu Sieben 2889c76995
Improve type safety and compatibility with Bun (#2879)
* jwk: Improve type safety and compatibility with Bun
* improve type safety of jwk keys
* improve typing of verifyAccessToken
* update @types/http-errors
* Better report invalid content-encoding errors
* Mark jwk key fields as readonly
2025-01-09 14:26:07 +01:00

50 lines
1.2 KiB
JSON

{
"name": "@atproto/xrpc-server",
"version": "0.7.6",
"license": "MIT",
"description": "atproto HTTP API (XRPC) server library",
"keywords": [
"atproto",
"xrpc"
],
"homepage": "https://atproto.com",
"repository": {
"type": "git",
"url": "https://github.com/bluesky-social/atproto",
"directory": "packages/xrpc-server"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc --build tsconfig.build.json"
},
"dependencies": {
"@atproto/common": "workspace:^",
"@atproto/crypto": "workspace:^",
"@atproto/lexicon": "workspace:^",
"@atproto/xrpc": "workspace:^",
"cbor-x": "^1.5.1",
"express": "^4.17.2",
"http-errors": "^2.0.0",
"mime-types": "^2.1.35",
"rate-limiter-flexible": "^2.4.1",
"uint8arrays": "3.0.0",
"ws": "^8.12.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@atproto/crypto": "workspace:^",
"@types/express": "^4.17.13",
"@types/express-serve-static-core": "^4.17.36",
"@types/http-errors": "^2.0.4",
"@types/ws": "^8.5.4",
"get-port": "^6.1.2",
"jest": "^28.1.2",
"jose": "^4.15.4",
"key-encoder": "^2.0.3",
"multiformats": "^9.9.0",
"typescript": "^5.6.3"
}
}