{
  "name": "@aurelienbbn/agentlint",
  "version": "0.1.5",
  "description": "Stateless, deterministic CLI that bridges traditional linters and AI-assisted code review",
  "keywords": [
    "agent",
    "ai",
    "ast",
    "code-review",
    "linter",
    "tanstack-intent",
    "tree-sitter"
  ],
  "license": "MIT",
  "author": "Aurelien Bobenrieth",
  "repository": {
    "type": "git",
    "url": "https://github.com/aurelienbobenrieth/agentlint"
  },
  "bin": {
    "agentlint": "dist/bin.mjs"
  },
  "files": [
    "dist",
    "skills",
    "!skills/_artifacts"
  ],
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.mts",
      "import": "./dist/index.mjs"
    }
  },
  "dependencies": {
    "@effect/platform-node": "4.0.0-beta.44",
    "effect": "4.0.0-beta.44",
    "jiti": "^2.4.2",
    "picomatch": "^4.0.2",
    "web-tree-sitter": "^0.25.3"
  },
  "devDependencies": {
    "@changesets/changelog-github": "^0.6.0",
    "@changesets/cli": "^2.30.0",
    "@tanstack/intent": "latest",
    "@types/node": "^22.13.14",
    "@types/picomatch": "^4.0.0",
    "oxfmt": "latest",
    "oxlint": "^0.16.7",
    "tree-sitter-wasms": "^0.1.13",
    "tsdown": "latest",
    "typescript": "^5.7.3",
    "vitest": "^3.1.1"
  },
  "engines": {
    "node": ">=22"
  },
  "scripts": {
    "build": "tsdown",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "test:watch": "vitest",
    "lint": "oxlint",
    "fmt": "oxfmt --write",
    "fmt:check": "oxfmt --check",
    "changeset": "changeset",
    "check": "pnpm typecheck && pnpm lint && pnpm fmt:check && intent validate && pnpm test"
  }
}