Skip to content

Commit

Permalink
Merge pull request #104 from inaiat/feat/fastify-v5
Browse files Browse the repository at this point in the history
feat: fastify v5
  • Loading branch information
inaiat authored Sep 24, 2024
2 parents 76b2ba5 + 142eba0 commit 5b519fd
Show file tree
Hide file tree
Showing 8 changed files with 993 additions and 1,384 deletions.
2 changes: 1 addition & 1 deletion BUILD_SHA
Original file line number Diff line number Diff line change
@@ -1 +1 @@
f242a65ad6e681b7e51a175bc88c067bdcab744b
f7f7fcdacfb4987ebad5e471233a1f1646210d9c
2 changes: 1 addition & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import eslint from '@eslint/js'
import functional from 'eslint-plugin-functional/flat'
import functional from 'eslint-plugin-functional'
import n from 'eslint-plugin-n'
import unicorn from 'eslint-plugin-unicorn'
import tseslint from 'typescript-eslint'
Expand Down
55 changes: 30 additions & 25 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
{
"name": "@inaiat/fastify-papr",
"version": "7.0.2",
"version": "8.0.0",
"description": "Fastify Papr Plugin Integration",
"type": "module",
"engines": {
"node": ">=20"
},
"packageManager": "[email protected]",
"exports": "./dist/index.js",
"packageManager": "[email protected]",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"types": "./dist/index.d.ts",
"scripts": {
"ts:loader": "FASTIFY_AUTOLOAD_TYPESCRIPT=true node --import=tsx/esm",
Expand Down Expand Up @@ -52,34 +57,34 @@
],
"homepage": "https://github.com/inaiat/fastify-papr.git",
"dependencies": {
"fastify-plugin": "^4.5.1",
"fastify-plugin": ">=4.5",
"papr": "^15.2.2"
},
"peerDependencies": {
"fastify": "^4.27",
"mongodb": "^6.7.0"
"fastify": "^5.0.0",
"mongodb": "6.7"
},
"devDependencies": {
"@eslint/js": "^9.4.0",
"@types/node": "^20.14.2",
"@eslint/js": "^9.11.1",
"@types/node": "^22.6.1",
"@types/semver": "^7.5.8",
"c8": "^9.1.0",
"dprint": "^0.46.1",
"eslint": "^9.4.0",
"eslint-plugin-functional": "^6.5.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.8.1",
"eslint-plugin-unicorn": "^53.0.0",
"husky": "^9.0.11",
"c8": "10.1.2",
"dprint": "^0.47.2",
"eslint": "^9.11.1",
"eslint-plugin-functional": "^7.0.2",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-n": "^17.10.3",
"eslint-plugin-unicorn": "^55.0.0",
"husky": "^9.1.6",
"istanbul-badges-readme": "^1.9.0",
"mongodb-memory-server": "^9.3.0",
"rimraf": "^5.0.7",
"semver": "^7.6.2",
"ts-node": "^10.9.2",
"tsup": "^8.1.0",
"tsx": "^4.13.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.12.0"
"mongodb": "6.7",
"mongodb-memory-server": "^10.0.1",
"rimraf": "^6.0.1",
"semver": "^7.6.3",
"tsup": "^8.3.0",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.0"
},
"files": [
"dist"
Expand All @@ -92,7 +97,7 @@
"clean": true,
"bundle": true,
"treeshake": true,
"target": "node18",
"target": "node20",
"format": [
"esm",
"cjs"
Expand Down
Loading

0 comments on commit 5b519fd

Please sign in to comment.