{
  "name": "deslop-js",
  "version": "0.9.2",
  "description": "Remove AI slop from JavaScript code.",
  "keywords": [
    "dead-code",
    "dependencies",
    "exports",
    "files",
    "javascript",
    "oxc",
    "typescript",
    "unused"
  ],
  "homepage": "https://github.com/millionco/react-doctor#readme",
  "bugs": {
    "url": "https://github.com/millionco/react-doctor/issues"
  },
  "license": "SEE LICENSE IN LICENSE",
  "author": {
    "name": "Aiden Bai",
    "email": "aiden@million.dev"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/millionco/react-doctor.git",
    "directory": "packages/deslop-js"
  },
  "files": [
    "dist",
    "package.json",
    "README.md",
    "LICENSE"
  ],
  "type": "module",
  "main": "dist/index.cjs",
  "module": "dist/index.mjs",
  "types": "dist/index.d.mts",
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "import": {
        "types": "./dist/index.d.mts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./analyzed-inputs": {
      "import": {
        "types": "./dist/analyzed-inputs.d.mts",
        "default": "./dist/analyzed-inputs.mjs"
      },
      "require": {
        "types": "./dist/analyzed-inputs.d.cts",
        "default": "./dist/analyzed-inputs.cjs"
      }
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@oxc-project/types": "^0.141.0",
    "fast-glob": "^3.3.3",
    "minimatch": "^10.2.5",
    "oxc-parser": "^0.141.0",
    "oxc-resolver": "^11.24.2",
    "typescript": ">=5.0.4 <6"
  },
  "devDependencies": {
    "@types/minimatch": "^5.1.2",
    "@types/node": "^25.6.0",
    "tsx": "^4.21.0"
  },
  "scripts": {
    "build": "vp pack",
    "dev": "vp pack --watch",
    "test": "node --import tsx --test tests/*.test.ts",
    "typecheck": "tsc --noEmit"
  }
}