{
  "name": "package-manager-detector",
  "type": "module",
  "version": "1.4.0",
  "description": "Package manager detector",
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",
  "license": "MIT",
  "homepage": "https://github.com/antfu-collective/package-manager-detector#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/antfu-collective/package-manager-detector.git"
  },
  "bugs": {
    "url": "https://github.com/antfu-collective/package-manager-detector/issues"
  },
  "sideEffects": false,
  "exports": {
    ".": "./dist/index.mjs",
    "./commands": "./dist/commands.mjs",
    "./detect": "./dist/detect.mjs",
    "./constants": "./dist/constants.mjs"
  },
  "main": "./dist/index.mjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "typesVersions": {
    "*": {
      "commands": [
        "./dist/commands.d.mts"
      ],
      "detect": [
        "./dist/detect.d.mts"
      ],
      "constants": [
        "./dist/constants.d.mts"
      ]
    }
  },
  "files": [
    "dist"
  ],
  "devDependencies": {
    "@antfu/eslint-config": "^5.4.1",
    "@types/fs-extra": "^11.0.4",
    "@types/node": "^22.18.8",
    "bumpp": "^10.3.1",
    "eslint": "^9.37.0",
    "fs-extra": "^11.3.2",
    "typescript": "^5.9.3",
    "unbuild": "^3.6.1",
    "vitest": "^3.2.4",
    "vitest-package-exports": "^0.1.1"
  },
  "scripts": {
    "build": "unbuild",
    "stub": "unbuild --stub",
    "release": "bumpp",
    "lint": "eslint",
    "lint:fix": "eslint --fix",
    "test": "vitest"
  }
}