Applied fresh on current main (the matching dependabot branches were 350-430 commits behind and would have conflicted on the lockfile): - @azure/cosmos 4.9.1 -> 4.9.3 - jose 6.1.3 -> 6.2.3 (mcp-server stays on the 5.x line: 5.9.6 -> 5.10.0) - @typescript-eslint/parser 8.0 -> 8.60.0 Verified: full workspace build green; platform-service suite 1684 pass (only the pre-existing single-fork migration-isolation flake, passes isolated); tracker-web 228 pass (only the pre-existing happy-dom product-context failures). No new regressions. Major bumps (fastify/cors, happy-dom, lint-staged, stripe, types/node) deferred for separate review. Generated with [Devin](https://cli.devin.ai/docs) Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
37 lines
766 B
JSON
37 lines
766 B
JSON
{
|
|
"name": "@bytelyst/fastify-auth",
|
|
"version": "0.1.7",
|
|
"description": "JWT auth middleware + request context for Fastify product backends",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest run --pool forks",
|
|
"clean": "rm -rf dist"
|
|
},
|
|
"peerDependencies": {
|
|
"fastify": ">=5.0.0",
|
|
"jose": ">=5.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@bytelyst/errors": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"fastify": "^5.2.1",
|
|
"jose": "^6.2.3",
|
|
"typescript": "^5.7.3",
|
|
"vitest": "^3.0.5"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
]
|
|
}
|