{
	"name": "@piggly/fastify-chassis",
	"version": "7.6.1",
	"description": "An ESM/CommonJS toolkit to help you to do common operations in your back-end applications with Fastify and NodeJS.",
	"scripts": {
		"clean": "rimraf dist",
		"pre:commit": "npm run format && npm run lint && npm run check",
		"prebuild": "npm run lint && npm run format",
		"build": "npm run clean && npm run build:types && npm run build:esm && npm run build:cjs",
		"build:esm": "tsc -p tsconfig.esm.json && tsc-alias -p tsconfig.esm.json --outDir dist/esm && node ./fixESM.cjs",
		"build:cjs": "tsc -p tsconfig.cjs.json && tsc-alias -p tsconfig.cjs.json --outDir dist/cjs",
		"build:types": "tsc -p tsconfig.types.json && tsc-alias -p tsconfig.types.json --outDir dist/types && node ./fixTypes.cjs",
		"check": "tsc --noEmit -p tsconfig.json",
		"format": "prettier --write \"./src/**/*.ts\" --log-level warn",
		"lint": "eslint --fix ./src/**",
		"test": "cross-env NODE_ENV=test jest --coverage --watchAll",
		"test:once": "cross-env NODE_ENV=test jest --passWithNoTests",
		"test:debug": "cross-env NODE_ENV=test node --inspect ./node_modules/.bin/jest --runInBand",
		"preversion": "npm run build",
		"postversion": "git push --follow-tags",
		"prepublishOnly": "npm run build",
		"prepare": "husky"
	},
	"main": "./dist/cjs/index.js",
	"module": "./dist/esm/index.js",
	"types": "./dist/types/index.d.ts",
	"exports": {
		".": {
			"import": {
				"types": "./dist/types/index.d.mts",
				"default": "./dist/esm/index.js"
			},
			"require": {
				"types": "./dist/types/index.d.cts",
				"default": "./dist/cjs/index.js"
			},
			"types": "./dist/types/index.d.ts"
		}
	},
	"files": [
		"dist",
		"LICENSE",
		"README.md"
	],
	"keywords": [
		"fastify",
		"microservices",
		"chassis",
		"utilities",
		"helpers"
	],
	"author": "caiquearaujo",
	"license": "MIT",
	"homepage": "https://github.com/piggly-dev/fastify-chassis#readme",
	"repository": {
		"type": "git",
		"url": "git+https://github.com/piggly-dev/fastify-chassis.git"
	},
	"bugs": {
		"url": "https://github.com/piggly-dev/fastify-chassis/issues"
	},
	"publishConfig": {
		"access": "public"
	},
	"devDependencies": {
		"@eslint/js": "^9.39.2",
		"@fastify/cookie": "^11.0.2",
		"@fastify/rate-limit": "^10.3.0",
		"@piggly/event-bus": "^3.0.0",
		"@types/debug": "^4.1.13",
		"@types/jest": "^30.0.0",
		"@types/module-alias": "^2.0.4",
		"@types/node": "^25.6.0",
		"@typescript-eslint/eslint-plugin": "^8.59.0",
		"@typescript-eslint/parser": "^8.59.0",
		"@zerollup/ts-transform-paths": "^1.7.18",
		"cross-env": "^10.1.0",
		"eslint": "^9.39.2",
		"eslint-config-prettier": "^10.1.8",
		"eslint-import-resolver-typescript": "^4.4.4",
		"eslint-plugin-import": "^2.32.0",
		"eslint-plugin-perfectionist": "^5.9.0",
		"eslint-plugin-prettier": "^5.5.5",
		"fastify": "^5.8.5",
		"globals": "^17.5.0",
		"husky": "^9.1.7",
		"jest": "^30.3.0",
		"prettier": "^3.8.3",
		"rimraf": "^6.1.3",
		"ts-jest": "^29.4.9",
		"tsc-alias": "^1.8.16",
		"tsconfig-paths": "^4.2.0",
		"tslib": "^2.8.1",
		"typescript": "^5.9.3",
		"typescript-eslint": "^8.59.0",
		"zod": "^4.3.6"
	},
	"dependencies": {
		"@piggly/ddd-toolkit": "^5.3.1",
		"@piggly/event-bus": "^3.0.0",
		"debug": "^4.4.3",
		"fastify": "^5.8.5",
		"zod": "^4.3.6"
	},
	"optionalDependencies": {
		"@fastify/cookie": ">=11.0"
	}
}
