UNPKG

@felixgeelhaar/cclint

Version:

A comprehensive linter for CLAUDE.md files with multi-language code block validation

78 lines (77 loc) 2.04 kB
{ "name": "@felixgeelhaar/cclint", "version": "0.4.0", "description": "A comprehensive linter for CLAUDE.md files with multi-language code block validation", "type": "module", "main": "dist/index.js", "bin": { "cclint": "dist/cli/index.js" }, "scripts": { "dev": "tsx src/cli/index.ts", "build": "tsc", "build:action": "tsc && ncc build dist/action/index.js -o dist/action", "test": "vitest", "test:watch": "vitest --watch", "test:coverage": "vitest --coverage", "typecheck": "tsc --noEmit", "lint": "eslint src --ext .ts", "lint:fix": "eslint src --ext .ts --fix", "format": "prettier --write src/**/*.ts", "format:check": "prettier --check src/**/*.ts", "install:hooks": "node scripts/install-hooks.js", "prepublishOnly": "npm run build" }, "keywords": [ "claude", "linter", "markdown", "typescript", "cli", "validation", "claude-ai", "context-files", "ai-development", "developer-tools", "code-quality", "multi-language", "security-validation", "best-practices" ], "repository": { "type": "git", "url": "git+https://github.com/felixgeelhaar/cclint.git" }, "bugs": { "url": "https://github.com/felixgeelhaar/cclint/issues" }, "homepage": "https://github.com/felixgeelhaar/cclint#readme", "author": "Felix Geelhaar <felix@felixgeelhaar.de>", "license": "MIT", "devDependencies": { "@types/node": "^20.14.10", "@typescript-eslint/eslint-plugin": "^7.16.0", "@typescript-eslint/parser": "^7.16.0", "eslint": "^8.57.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.1.3", "prettier": "^3.3.2", "tsx": "^4.16.2", "typescript": "^5.5.3", "vitest": "^3.2.4", "@vitest/coverage-v8": "^3.2.4" }, "dependencies": { "commander": "^12.1.0", "@actions/core": "^1.10.1", "@actions/glob": "^0.4.0" }, "engines": { "node": ">=18.0.0" }, "files": [ "dist/**/*", "README.md", "LICENSE" ] }