{
  "name": "@sun-asterisk/sunlint",
  "version": "1.3.56",
  "description": "☀️ SunLint - Multi-language static analysis tool for code quality and security | Sun* Engineering Standards",
  "main": "cli.js",
  "bin": {
    "sunlint": "./cli.js"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/sun-asterisk/engineer-excellence.git",
    "directory": "coding-quality/extensions/sunlint"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org",
    "access": "public"
  },
  "keywords": [
    "linting",
    "code-quality",
    "security",
    "typescript",
    "eslint",
    "eslint-integration",
    "coding-standards",
    "static-analysis",
    "git-integration",
    "ci-cd",
    "sun-asterisk"
  ],
  "author": "Sun* Engineering Team",
  "license": "MIT",
  "files": [
    "cli.js",
    "core/",
    "origin-rules/",
    "config/",
    "engines/",
    "integrations/",
    "rules/",
    "scripts/",
    "templates/",
    "docs/",
    "skill-assets/",
    "dart_analyzer/",
    ".sunlint.json",
    "README.md",
    "LICENSE",
    "CHANGELOG.md",
    "PROJECT_STRUCTURE.md",
    "CONTRIBUTING.md"
  ],
  "engines": {
    "node": ">=18.18.0"
  },
  "dependencies": {
    "@babel/parser": "^7.25.8",
    "@babel/traverse": "^7.25.8",
    "@octokit/rest": "^22.0.0",
    "@typescript-eslint/eslint-plugin": "^8.38.0",
    "@typescript-eslint/parser": "^8.38.0",
    "chalk": "^4.1.2",
    "commander": "^12.1.0",
    "eslint": "^9.31.0",
    "eslint-plugin-react": "^7.37.5",
    "eslint-plugin-react-hooks": "^5.2.0",
    "espree": "^10.3.0",
    "glob": "^10.5.0",
    "minimatch": "^10.0.3",
    "node-fetch": "^3.3.2",
    "table": "^6.8.2",
    "ts-morph": "^26.0.0"
  },
  "peerDependencies": {
    "typescript": ">=4.0.0"
  },
  "peerDependenciesMeta": {
    "eslint": {
      "optional": true
    },
    "@typescript-eslint/eslint-plugin": {
      "optional": true
    },
    "@typescript-eslint/parser": {
      "optional": true
    },
    "eslint-plugin-react": {
      "optional": true
    },
    "eslint-plugin-react-hooks": {
      "optional": true
    },
    "typescript": {
      "optional": true
    }
  },
  "devDependencies": {
    "@types/node": "^22.10.1",
    "eslint-plugin-import": "^2.32.0",
    "jest": "^29.7.0",
    "typescript": "^5.8.3"
  },
  "bugs": {
    "url": "https://github.com/sun-asterisk/engineer-excellence/issues"
  },
  "homepage": "https://github.com/sun-asterisk/engineer-excellence/tree/main/coding-quality/extensions/sunlint#readme",
  "scripts": {
    "test": "node examples/run-tests.js",
    "test:perf": "node test/performance-test.js",
    "lint": "node cli.js --all --input=. --format=summary",
    "build": "pnpm run copy-rules && pnpm run generate-registry && pnpm run copy-arch-detect && pnpm run copy-impact",
    "copy-rules": "node scripts/copy-rules.js",
    "generate-registry": "node scripts/generate-rules-registry.js",
    "copy-arch-detect": "node scripts/copy-arch-detect.js",
    "copy-impact": "node scripts/copy-impact-analyzer.js",
    "clean": "rm -rf coverage/ *.log reports/ *.tgz engines/arch-detect engines/impact",
    "pack": "pnpm run build && pnpm pack",
    "publish:npmjs": "pnpm publish --registry=https://registry.npmjs.org --no-git-checks",
    "publish:test": "pnpm publish --dry-run --registry=https://registry.npmjs.org --no-git-checks"
  }
}