{
	"name": "@elsikora/nestjs-crud-automator",
	"version": "3.0.2",
	"description": "A library for automating the creation of CRUD operations in NestJS.",
	"keywords": [
		"NestJS",
		"CRUD",
		"TypeORM",
		"REST API",
		"Swagger",
		"Decorator"
	],
	"repository": {
		"type": "git",
		"url": "https://github.com/ElsiKora/NestJS-Crud-Automator"
	},
	"license": "MIT",
	"author": "ElsiKora",
	"sideEffects": false,
	"type": "module",
	"exports": {
		".": {
			"types": "./dist/cjs/index.d.ts",
			"require": "./dist/cjs/index.js",
			"import": "./dist/esm/index.js"
		}
	},
	"main": "dist/cjs/index.js",
	"module": "dist/esm/index.js",
	"types": "dist/cjs/index.d.ts",
	"files": [
		"dist"
	],
	"scripts": {
		"branch": "npx @elsikora/git-branch-lint -b",
		"prebuild": "rimraf dist",
		"build": "npm run prebuild && rollup -c",
		"postbuild": "node scripts/check-declaration-imports.cjs",
		"commit": "cz",
		"format": "prettier --check .",
		"format:fix": "prettier --write .",
		"lint": "eslint ./",
		"lint:all": "npm run lint && npm run lint:types",
		"lint:all:fix": "npm run lint:fix && npm run lint:types:fix",
		"lint:fix": "eslint --fix ./",
		"lint:types": "tsc --noEmit",
		"lint:types:fix": "tsc --noEmit --skipLibCheck",
		"prepare": "husky",
		"release": "semantic-release",
		"test:all": "npm run test:unit && npm run test:e2e",
		"test:e2e": "npm run build && vitest --config vitest.e2e.config.js --typecheck.tsconfig tsconfig.json",
		"test:unit": "vitest run test/unit --config vitest.unit.config.js"
	},
	"config": {
		"commitizen": {
			"path": "@elsikora/commitizen-plugin-commitlint-ai"
		}
	},
	"dependencies": {
		"@elsikora/pluralizer": "^2.0.0",
		"dotenv": "^17.4.2",
		"reflect-metadata": "^0.2.2",
		"rxjs": "^7.8.2"
	},
	"devDependencies": {
		"@commitlint/cli": "^21.0.2",
		"@commitlint/config-conventional": "^21.0.2",
		"@elsikora/cladi": "^2.1.2",
		"@elsikora/commitizen-plugin-commitlint-ai": "^3.0.1",
		"@elsikora/eslint-config": "^3.10.1",
		"@elsikora/eslint-plugin-nestjs-typed": "^3.1.0",
		"@elsikora/git-branch-lint": "^1.2.2",
		"@nestjs/common": "^11.1.24",
		"@nestjs/core": "^11.1.24",
		"@nestjs/passport": "^11.0.5",
		"@nestjs/platform-fastify": "^11.1.24",
		"@nestjs/swagger": "11.4.2",
		"@nestjs/testing": "^11.1.24",
		"@nestjs/throttler": "^6.5.0",
		"@nestjs/typeorm": "^11.0.1",
		"@rollup/plugin-alias": "^6.0.0",
		"@rollup/plugin-node-resolve": "^16.0.3",
		"@rollup/plugin-typescript": "^12.3.0",
		"@saithodev/semantic-release-backmerge": "^4.0.1",
		"@semantic-release/changelog": "^6.0.3",
		"@semantic-release/commit-analyzer": "^13.0.1",
		"@semantic-release/git": "^10.0.1",
		"@semantic-release/github": "^12.0.8",
		"@semantic-release/npm": "^13.1.5",
		"@semantic-release/release-notes-generator": "^14.1.1",
		"@testcontainers/postgresql": "^12.0.4",
		"@types/lodash": "^4.17.24",
		"@types/node": "^25.9.1",
		"@types/pg": "^8.20.0",
		"@vitest/coverage-v8": "^4.1.8",
		"@vitest/ui": "^4.1.8",
		"class-transformer": "^0.5.1",
		"class-validator": "^0.15.1",
		"commitizen": "^4.3.1",
		"conventional-changelog-conventionalcommits": "^9.3.1",
		"eslint": "^10.8.0",
		"eslint-plugin-n": "^18.0.1",
		"eslint-plugin-ng-module-sort": "^1.4.0",
		"eslint-plugin-no-secrets": "^2.3.3",
		"eslint-plugin-typeorm-typescript": "^0.5.4",
		"fastify": "^5.8.5",
		"husky": "^9.1.7",
		"lint-staged": "^17.0.7",
		"lodash": "^4.18.1",
		"pg": "^8.22.0",
		"prettier": "^3.8.3",
		"rimraf": "^6.1.3",
		"rollup": "^4.61.1",
		"rollup-plugin-generate-package-json": "^3.2.0",
		"semantic-release": "^25.0.3",
		"sqlite3": "^5.1.7",
		"tslib": "^2.8.1",
		"typeorm": "^0.3.28",
		"typescript": "^6.0.3",
		"unplugin-dts": "^1.0.2",
		"vite-tsconfig-paths": "^6.1.1",
		"vitest": "^4.1.8"
	},
	"peerDependencies": {
		"@nestjs/common": ">=11.1.24",
		"@nestjs/core": ">=11.1.24",
		"@nestjs/passport": ">=11.0.5",
		"@nestjs/platform-fastify": ">=11.1.24",
		"@nestjs/swagger": ">=11.0.3",
		"@nestjs/throttler": ">=6.5.0",
		"class-transformer": ">=0.5.1",
		"class-validator": ">=0.15.1",
		"fastify": ">=5.8.5",
		"lodash": ">=4.18.1",
		"typeorm": ">=0.3.20"
	},
	"engines": {
		"node": ">=20.0.0"
	},
	"publishConfig": {
		"access": "public"
	}
}
