{
  "name": "parse-package-name",
  "version": "1.0.0",
  "description": "Parse npm package name into name, version and path",
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist"
  ],
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "exports": {
    "require": "./dist/index.js",
    "import": "./dist/index.mjs"
  },
  "types": "./dist/index.d.ts",
  "scripts": {
    "build": "tsup src/index.ts --format cjs,esm --dts-resolve",
    "test": "jest",
    "prepublishOnly": "npm run build"
  },
  "license": "MIT",
  "devDependencies": {
    "@egoist/prettier-config": "0.1.0",
    "@sucrase/jest-plugin": "2.2.0",
    "@types/jest": "27.0.2",
    "jest": "27.3.1",
    "prettier": "2.4.1",
    "tsup": "5.7.2",
    "typescript": "4.5.2"
  }
}
