{
  "name": "pkg-entry-points",
  "version": "1.1.1",
  "description": "Get all entry-points for an npm package. Supports the `exports` field in `package.json`.",
  "keywords": [
    "node.js",
    "package.json",
    "entry",
    "points",
    "entry-points",
    "exports",
    "conditions",
    "entries"
  ],
  "license": "MIT",
  "repository": "privatenumber/pkg-entry-points",
  "funding": "https://github.com/privatenumber/pkg-entry-points?sponsor=1",
  "author": {
    "name": "Hiroki Osame",
    "email": "hiroki.osame@gmail.com"
  },
  "files": [
    "dist"
  ],
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.cts",
  "exports": {
    "require": {
      "types": "./dist/index.d.cts",
      "default": "./dist/index.cjs"
    },
    "import": {
      "types": "./dist/index.d.mts",
      "default": "./dist/index.mjs"
    }
  },
  "imports": {
    "#pkg-entry-points": {
      "types": "./src/index.ts",
      "development": "./src/index.ts",
      "default": "./dist/index.mjs"
    }
  }
}