{
  "name": "pnpm-settings-migrator",
  "type": "module",
  "version": "0.6.1",
  "description": "Move pnpm settings from `pnpm` field in `package.json` and `.npmrc` file to `pnpm-workspace.yaml`",
  "keywords": [
    "migrator",
    "pnpm",
    "settings"
  ],
  "license": "MIT",
  "author": {
    "name": "ntnyq",
    "email": "ntnyq13@gmail.com"
  },
  "homepage": "https://github.com/ntnyq/pnpm-settings-migrator#readme",
  "repository": {
    "type": "git",
    "url": "ntnyq/pnpm-settings-migrator"
  },
  "bugs": {
    "url": "https://github.com/ntnyq/pnpm-settings-migrator/issues"
  },
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "types": "./dist/index.d.mts",
      "default": "./dist/index.mjs"
    }
  },
  "main": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "files": [
    "bin.mjs",
    "dist"
  ],
  "publishConfig": {
    "access": "public"
  },
  "sideEffects": false,
  "dependencies": {
    "@ntnyq/utils": "^0.15.0",
    "@pnpm/types": "^1101.3.2",
    "cac": "^7.0.0",
    "camelcase-keys": "^10.0.2",
    "consola": "^3.4.2",
    "defu": "^6.1.7",
    "detect-indent": "^7.0.2",
    "pathe": "^2.0.3",
    "read-ini-file": "^5.0.0",
    "uncase": "^0.2.0",
    "yaml": "^2.9.0"
  },
  "devDependencies": {
    "@ntnyq/eslint-config": "^6.1.5",
    "@types/node": "^26.0.0",
    "@typescript/native-preview": "^7.0.0-dev.20260620.1",
    "bumpp": "^11.1.0",
    "eslint": "^10.5.0",
    "husky": "^9.1.7",
    "nano-staged": "^1.0.2",
    "npm-run-all2": "^9.0.2",
    "oxfmt": "^0.55.0",
    "tsdown": "^0.22.3",
    "vitest": "^4.1.9"
  },
  "nano-staged": {
    "*.{js,ts,mjs,tsx,md,yml,yaml,toml,json}": "eslint --fix",
    "*": "oxfmt --no-error-on-unmatched-pattern"
  },
  "scripts": {
    "build": "tsdown",
    "dev": "tsdown --watch",
    "format": "oxfmt",
    "format:check": "oxfmt --check",
    "lint": "eslint",
    "release": "run-s release:check release:version",
    "release:check": "run-s lint format:check typecheck test",
    "release:version": "bumpp",
    "test": "vitest",
    "typecheck": "tsgo --noEmit"
  },
  "bin": {
    "pnpm-settings-migrator": "./bin.mjs"
  }
}