{
  "name": "npx-scope-finder",
  "version": "2.0.2",
  "type": "module",
  "description": "A tool to find executable (npx-compatible) packages within a specific npm scope",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.mts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "main": "dist/index.cjs",
  "module": "dist/index.mjs",
  "types": "dist/index.d.mts",
  "sideEffects": false,
  "keywords": [
    "npm",
    "npx",
    "scope",
    "executable",
    "bin",
    "finder",
    "package",
    "search",
    "npm-registry"
  ],
  "author": {
    "name": "MyPrototypeWhat",
    "url": "https://github.com/MyPrototypeWhat"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/MyPrototypeWhat/npx-scope-finder.git"
  },
  "bugs": {
    "url": "https://github.com/MyPrototypeWhat/npx-scope-finder/issues"
  },
  "homepage": "https://github.com/MyPrototypeWhat/npx-scope-finder#readme",
  "license": "MIT",
  "dependencies": {
    "p-limit": "^7.0.0"
  },
  "devDependencies": {
    "@changesets/changelog-github": "^0.6.0",
    "@changesets/cli": "^2.30.0",
    "@types/node": "^20.0.0",
    "tsdown": "^0.21.2",
    "typescript": "^5.0.0",
    "vitest": "^4.1.0"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "engines": {
    "node": ">=20"
  },
  "scripts": {
    "build": "tsdown",
    "test": "vitest run",
    "test:functional": "vitest run test/functional.test.ts",
    "test:retry": "vitest run test/retry.test.ts",
    "clean": "rm -rf dist",
    "prebuild": "npm run clean",
    "release": "changeset publish",
    "changeset": "changeset"
  }
}