{
	"name": "@elsikora/nestjs-crud-automator",
	"version": "1.10.3",
	"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",
	"type": "module",
	"exports": {
		".": {
			"require": "./dist/cjs/index.js",
			"import": "./dist/esm/index.js"
		}
	},
	"main": "dist/cjs/index.js",
	"module": "dist/esm/index.js",
	"files": [
		"dist"
	],
	"scripts": {
		"prebuild": "rimraf dist",
		"build": "npm run prebuild && rollup -c",
		"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"
	},
	"config": {
		"commitizen": {
			"path": "@elsikora/commitizen-plugin-commitlint-ai"
		}
	},
	"dependencies": {
		"@elsikora/cladi": "^2.0.2",
		"@elsikora/pluralizer": "^2.0.0",
		"dotenv": "^16.5.0",
		"reflect-metadata": "^0.2.2",
		"rxjs": "^7.8.2"
	},
	"devDependencies": {
		"@commitlint/cli": "^19.8.1",
		"@commitlint/config-conventional": "^19.8.1",
		"@elsikora/commitizen-plugin-commitlint-ai": "^2.0.1",
		"@elsikora/eslint-config": "^3.10.0",
		"@elsikora/eslint-plugin-nestjs-typed": "^3.0.1",
		"@rollup/plugin-alias": "^5.1.1",
		"@rollup/plugin-node-resolve": "^16.0.1",
		"@rollup/plugin-typescript": "^12.1.3",
		"@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": "^11.0.3",
		"@semantic-release/npm": "^12.0.1",
		"@semantic-release/release-notes-generator": "^14.0.3",
		"@types/lodash": "^4.17.17",
		"@types/node": "^24.0.3",
		"commitizen": "^4.3.1",
		"conventional-changelog-conventionalcommits": "^9.0.0",
		"eslint": "^9.29.0",
		"eslint-plugin-n": "^17.20.0",
		"eslint-plugin-ng-module-sort": "^1.3.2",
		"eslint-plugin-no-secrets": "^2.2.1",
		"eslint-plugin-typeorm-typescript": "^0.5.0",
		"husky": "^9.1.7",
		"lint-staged": "^16.1.2",
		"prettier": "^3.5.3",
		"rimraf": "^6.0.1",
		"rollup": "^4.43.0",
		"rollup-plugin-dts-path-alias": "^0.0.3",
		"rollup-plugin-generate-package-json": "^3.2.0",
		"semantic-release": "^24.2.5",
		"tslib": "^2.8.1",
		"typeorm": "^0.3.24",
		"typescript": "^5.8.3"
	},
	"peerDependencies": {
		"@nestjs/common": ">=11.0.5",
		"@nestjs/core": ">=11.0.5",
		"@nestjs/passport": ">=11.0.5",
		"@nestjs/platform-fastify": ">=11.0.5",
		"@nestjs/swagger": ">=11.0.3",
		"@nestjs/throttler": ">=6.4.0",
		"class-transformer": ">=0.5.1",
		"class-validator": ">=0.14.1",
		"fastify": ">=5.0.0",
		"lodash": ">=4.17.21",
		"typeorm": ">=0.3.20"
	},
	"publishConfig": {
		"access": "public"
	}
}
