{
  "name": "package-exports",
  "version": "1.0.0",
  "description": "Get the exports of a package",
  "license": "MIT",
  "keywords": [
    "api",
    "conditions",
    "exports",
    "node",
    "npm",
    "package"
  ],
  "repository": "wooorm/package-exports",
  "bugs": "https://github.com/wooorm/package-exports/issues",
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/wooorm"
  },
  "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
  "contributors": [
    "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
  ],
  "type": "module",
  "exports": "./index.js",
  "files": [
    "lib/",
    "index.d.ts.map",
    "index.d.ts",
    "index.js"
  ],
  "dependencies": {
    "@npmcli/arborist": "^7.0.0",
    "@types/node": "^20.0.0",
    "estree-util-is-identifier-name": "^3.0.0",
    "jsonc-parser": "^3.0.0",
    "minimatch": "^9.0.0",
    "npm-packlist": "^8.0.0",
    "vfile": "^6.0.0",
    "vfile-location": "^5.0.0",
    "vfile-message": "^4.0.0",
    "vfile-sort": "^4.0.0"
  },
  "devDependencies": {
    "@types/npm-packlist": "^7.0.0",
    "@types/npmcli__arborist": "^5.0.0",
    "c8": "^8.0.0",
    "prettier": "^3.0.0",
    "remark-cli": "^12.0.0",
    "remark-gfm": "^4.0.0",
    "remark-preset-wooorm": "^9.0.0",
    "type-coverage": "^2.0.0",
    "type-fest": "^4.0.0",
    "typescript": "^5.0.0",
    "xo": "^0.56.0"
  },
  "scripts": {
    "build": "tsc --build --clean && tsc --build && type-coverage",
    "prepack": "npm run build && npm run format",
    "format": "remark . --frail --output --quiet && prettier . --log-level warn --write && xo --fix",
    "test": "npm run build && npm run format && npm run test-coverage",
    "test-api": "node --conditions development test.js",
    "test-coverage": "c8 --100 --reporter lcov npm run test-api"
  },
  "prettier": {
    "bracketSpacing": false,
    "semi": false,
    "singleQuote": true,
    "tabWidth": 2,
    "trailingComma": "none",
    "useTabs": false
  },
  "remarkConfig": {
    "plugins": [
      "remark-preset-wooorm",
      [
        "remark-lint-list-item-indent",
        "space"
      ],
      [
        "remark-preset-wooorm/node_modules/remark-gfm/index.js",
        false
      ],
      "remark-gfm"
    ]
  },
  "typeCoverage": {
    "atLeast": 100,
    "detail": true,
    "ignoreCatch": true,
    "strict": true
  },
  "xo": {
    "prettier": true,
    "rules": {
      "no-await-in-loop": "off",
      "unicorn/no-array-callback-reference": "off"
    }
  }
}
