{
	"name": "@elsikora/git-branch-lint",
	"version": "1.2.2",
	"description": "Lint your git branch names",
	"keywords": [
		"lint",
		"validate",
		"branch",
		"name",
		"git",
		"git-branch",
		"branch-name"
	],
	"repository": {
		"type": "git",
		"url": "https://github.com/ElsiKora/Git-Branch-Lint.git"
	},
	"license": "MIT",
	"author": "ElsiKora",
	"type": "module",
	"exports": {
		".": {
			"types": "./bin/index.d.ts"
		}
	},
	"main": "bin/index.js",
	"types": "./bin/index.d.ts",
	"bin": {
		"git-branch-lint": "./bin/index.js"
	},
	"files": [
		"bin"
	],
	"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",
		"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": {
		"chalk": "^5.6.2",
		"cosmiconfig": "^9.0.0",
		"inquirer": "^13.2.5",
		"path-to-regexp": "^8.3.0",
		"yargs": "^18.0.0"
	},
	"devDependencies": {
		"@commitlint/cli": "^20.4.1",
		"@commitlint/config-conventional": "^20.4.1",
		"@elsikora/commitizen-plugin-commitlint-ai": "^2.4.0",
		"@elsikora/eslint-config": "^3.10.0",
		"@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.6",
		"@semantic-release/npm": "^13.1.4",
		"@semantic-release/release-notes-generator": "^14.1.0",
		"@types/inquirer": "^9.0.9",
		"@types/node": "^25.2.3",
		"@types/yargs": "^17.0.35",
		"@vitest/coverage-v8": "^4.0.18",
		"commitizen": "^4.3.1",
		"conventional-changelog-conventionalcommits": "^9.1.0",
		"eslint": "^10.0.0",
		"eslint-plugin-n": "^17.24.0",
		"husky": "^9.1.7",
		"lint-staged": "^16.2.7",
		"prettier": "^3.8.1",
		"rimraf": "^6.1.3",
		"rollup": "^4.57.1",
		"semantic-release": "^25.0.3",
		"ts-node": "^10.9.2",
		"tslib": "^2.8.1",
		"tsx": "^4.21.0",
		"typescript": "^5.9.3",
		"vite-tsconfig-paths": "^6.1.1",
		"vitest": "^4.0.18"
	},
	"publishConfig": {
		"access": "public"
	}
}
