| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 | {  "name": "local-pkg",  "version": "0.4.2",  "packageManager": "pnpm@7.5.0",  "description": "Get information on local packages.",  "author": "Anthony Fu <anthonyfu117@hotmail.com>",  "license": "MIT",  "funding": "https://github.com/sponsors/antfu",  "homepage": "https://github.com/antfu/local-pkg#readme",  "repository": {    "type": "git",    "url": "git+https://github.com/antfu/local-pkg.git"  },  "bugs": {    "url": "https://github.com/antfu/local-pkg/issues"  },  "keywords": [    "package"  ],  "sideEffects": false,  "exports": {    ".": {      "require": "./index.cjs",      "import": "./index.mjs"    }  },  "main": "index.cjs",  "module": "index.mjs",  "types": "index.d.ts",  "files": [    "dist",    "index.cjs",    "index.mjs",    "index.d.ts"  ],  "engines": {    "node": ">=14"  },  "scripts": {    "prepublishOnly": "nr build",    "build": "tsup shared.ts --format esm,cjs --dts && esno scripts/postbuild.ts",    "lint": "eslint .",    "release": "bumpp && npm publish",    "test": "node test/cjs.cjs && node test/esm.mjs"  },  "devDependencies": {    "@antfu/eslint-config": "^0.25.2",    "@antfu/ni": "^0.16.3",    "@antfu/utils": "^0.5.2",    "@types/chai": "^4.3.1",    "@types/node": "^18.0.3",    "bumpp": "^8.2.1",    "chai": "^4.3.6",    "eslint": "^8.19.0",    "esno": "^0.16.3",    "find-up": "^6.3.0",    "tsup": "^6.1.3",    "typescript": "^4.7.4"  }}
 |