{
  "name": "any-map",
  "version": "2.0.0",
  "description": "Static flow analysis for TypeScript any types. Finds the few sources responsible for most of your type erosion.",
  "keywords": [
    "typescript",
    "any",
    "type-coverage",
    "static-analysis",
    "lint",
    "cli"
  ],
  "homepage": "https://github.com/anasm266/any-map#readme",
  "bugs": {
    "url": "https://github.com/anasm266/any-map/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/anasm266/any-map.git"
  },
  "license": "MIT",
  "author": "anasm266",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "any-map": "./dist/cli.js"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=20.0.0"
  },
  "dependencies": {
    "cli-table3": "^0.6.5",
    "commander": "^14.0.3",
    "picocolors": "^1.1.1",
    "picomatch": "^4.0.4",
    "ts-morph": "^28.0.0",
    "typescript": ">=5.0.0 <7.0.0"
  },
  "peerDependencies": {
    "typescript": ">=5.0.0"
  },
  "devDependencies": {
    "@changesets/cli": "^2.31.0",
    "@eslint/js": "^9.20.0",
    "@types/node": "^22.15.0",
    "@types/picomatch": "^4.0.3",
    "@typescript-eslint/eslint-plugin": "^8.26.0",
    "@typescript-eslint/parser": "^8.26.0",
    "eslint": "^9.20.0",
    "globals": "^16.0.0",
    "prettier": "^3.5.0",
    "tsup": "^8.5.1",
    "typescript": "^6.0.3",
    "vitest": "^4.1.5"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "test:watch": "vitest",
    "lint": "eslint src tests",
    "format": "prettier --write \"**/*.{ts,js,json,md}\"",
    "format:check": "prettier --check \"**/*.{ts,js,json,md}\"",
    "ci:publish": "pnpm build && changeset publish",
    "ci:version": "changeset version"
  }
}