{
	"name": "agent-rules-kit",
	"version": "3.8.1",
	"description": "CLI tool to bootstrap AI agent rules for multiple IDEs and frameworks. Generates optimized rules for Cursor, VS Code, Claude, and 6+ other AI coding assistants.",
	"type": "module",
	"bin": {
		"agent-rules-kit": "cli/index.js"
	},
	"scripts": {
		"test": "vitest run",
		"test:coverage": "vitest run --coverage",
		"test:cli": "node tests/test-cli.js",
		"test:cli:laravel": "node tests/test-cli.js --stack=laravel --version=11 --debug",
		"test:cli:angular": "node tests/test-cli.js --stack=angular --version=14 --debug",
		"test:cli:nextjs": "node tests/test-cli.js --stack=nextjs --version=14 --debug",
		"start": "node cli/index.js",
		"dev": "node cli/index.js",
		"lint": "eslint \"**/*.js\"",
		"prepare": "husky install"
	},
	"dependencies": {
		"chalk": "^5.4.1",
		"cli-progress": "^3.12.0",
		"fs-extra": "^11.0.0",
		"inquirer": "^9.0.0"
	},
	"devDependencies": {
		"@semantic-release/changelog": "^6.0.3",
		"@semantic-release/git": "^10.0.1",
		"@semantic-release/github": "^11.0.2",
		"@semantic-release/npm": "^12.0.1",
		"@vitest/coverage-v8": "^3.1.3",
		"eslint": "^9.26.0",
		"husky": "^8.0.0",
		"semantic-release": "^24.2.3",
		"vitest": "^1.5.0"
	},
	"keywords": [
		"cursor",
		"rules",
		"templates",
		"agent",
		"ai",
		"laravel",
		"nextjs",
		"react",
		"angular",
		"mcp",
		"mcp-tools",
		"model-context-protocol"
	],
	"release": {
		"branches": [
			"main"
		],
		"plugins": [
			"@semantic-release/commit-analyzer",
			"@semantic-release/release-notes-generator",
			"@semantic-release/changelog",
			"@semantic-release/npm",
			"@semantic-release/github",
			[
				"@semantic-release/git",
				{
					"assets": [
						"CHANGELOG.md",
						"package.json"
					],
					"message": "chore(release): ${nextRelease.version} [skip ci]"
				}
			]
		]
	},
	"author": "Manuel Bruña",
	"license": "ISC",
	"repository": {
		"type": "git",
		"url": "https://github.com/tecnomanu/agent-rules-kit"
	}
}
