{
  "name": "instrlint",
  "version": "0.2.4",
  "description": "Lint and optimize your CLAUDE.md / AGENTS.md — find dead rules, token waste, and structural issues",
  "type": "module",
  "bin": {
    "instrlint": "dist/cli.js"
  },
  "main": "./dist/index.js",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist",
    "skills",
    "LICENSE",
    "README.md"
  ],
  "engines": {
    "node": ">=18"
  },
  "license": "MIT",
  "author": "Jed Lin",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jed1978/instrlint.git"
  },
  "homepage": "https://github.com/jed1978/instrlint#readme",
  "bugs": {
    "url": "https://github.com/jed1978/instrlint/issues"
  },
  "keywords": [
    "claude",
    "codex",
    "cursor",
    "lint",
    "agent",
    "instructions",
    "cli",
    "llm",
    "CLAUDE.md",
    "AGENTS.md",
    "agentic-coding"
  ],
  "scripts": {
    "dev": "tsx watch src/cli.ts",
    "build": "tsup",
    "test": "vitest run",
    "lint": "eslint src/ tests/",
    "lint:fix": "eslint src/ tests/ --fix",
    "typecheck": "tsc --noEmit",
    "audit": "pnpm audit",
    "check": "pnpm typecheck && pnpm lint && pnpm test",
    "release:patch": "npm version patch && git push --follow-tags",
    "release:minor": "npm version minor && git push --follow-tags",
    "release:major": "npm version major && git push --follow-tags"
  },
  "dependencies": {
    "chalk": "^5.3.0",
    "commander": "^12.1.0",
    "js-tiktoken": "^1.0.15"
  },
  "devDependencies": {
    "@types/node": "^22.0.0",
    "@typescript-eslint/eslint-plugin": "^8.58.0",
    "@typescript-eslint/parser": "^8.58.0",
    "eslint": "^10.2.0",
    "tsup": "^8.3.0",
    "tsx": "^4.19.0",
    "typescript": "^5.6.0",
    "vitest": "^2.1.0"
  }
}
