{
  "name": "eslint-plugin-sc-js",
  "version": "0.2.1",
  "description": "Strict Check rules for eslint for javascript / typescript",
  "keywords": [
    "eslint",
    "eslint-plugin",
    "eslintplugin",
    "javascript",
    "strict-check",
    "typescript"
  ],
  "author": "akky-xxxx",
  "repository": {
    "type": "git",
    "url": "https://github.com/akky-xxxx/strict-check"
  },
  "bugs": "https://github.com/akky-xxxx/strict-check/issues",
  "homepage": "https://strict-check-series.pages.dev/packages/eslint-plugin-sc-js",
  "license": "MIT",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "dependencies": {
    "zod": "^4.4.3"
  },
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@tsconfig/strictest": "^2.0.5",
    "@typescript-eslint/rule-tester": "^8.59.3",
    "@typescript-eslint/utils": "^8.59.3",
    "@vitest/coverage-v8": "^4.1.6",
    "chokidar-cli": "^3.0.0",
    "cspell": "^10.0.0",
    "eslint": "^9.30.0",
    "eslint-config-airbnb-base": "^15.0.0",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-import": "^2.32.0",
    "fixpack": "^4.0.0",
    "npm-run-all2": "^8.0.4",
    "prettier": "^3.8.3",
    "typescript": "^5.8.3",
    "typescript-eslint": "^8.59.3",
    "vitest": "^4.1.6",
    "strict-check": "^0.0.0"
  },
  "peerDependencies": {
    "eslint": "^9.0.0"
  },
  "scripts": {
    "bootstrap": "run-p \"bootstrap:*\"",
    "bootstrap:copy-shared": "node ../../scripts/copy-shared/index.js",
    "bootstrap:dependence-build": "pnpm -r run build",
    "build": "run-s \"build:*\"",
    "build:1": "rm -rf ./dist",
    "build:2": "tsc -p tsconfig.build.json",
    "check-code": "npm-run-all -c -s bootstrap -p lint spell-check type-check -s test dry-run",
    "dev": "chokidar \"./{src,spec}/**\" -c \"pnpm type-check && pnpm test\"",
    "dry-run": "run-s dry-run:prepare dry-run:exec",
    "dry-run:exec": "pnpm --filter dr-eslint-plugin-sc-js run dry-run",
    "dry-run:prepare": "pnpm --filter dr-eslint-plugin-sc-js run bootstrap",
    "fix": "run-p \"fix:*\" -c",
    "fix:eslint": "eslint \"./\" --fix --max-warnings 0",
    "fix:pack": "fixpack",
    "fix:prettier": "prettier \".\" --ignore-path ../../.prettierignore -w -u",
    "lint": "run-p \"lint:*\" -c",
    "lint:eslint": "eslint \"./\" --max-warnings 0",
    "lint:pack": "fixpack --dryRun",
    "lint:prettier": "prettier \".\" --ignore-path ../../.prettierignore -c -u",
    "publish:dry-run": "npm pack --dry-run",
    "spell-check": "cspell lint --no-progress \"./{spec,src}/**/*.ts\" \"./{config,scripts}/**/*.{js,mjs}\" \"./*.{js,mjs}\"",
    "tagging": "node ../../scripts/tagging/index.mjs",
    "test": "vitest run --coverage",
    "type-check": "tsc"
  }
}