{
  "name": "unpartial",
  "version": "1.0.5",
  "description": "Unpartial a partialed object",
  "homepage": "https://github.com/unional/unpartial",
  "bugs": {
    "url": "https://github.com/unional/unpartial/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/unional/unpartial.git"
  },
  "license": "MIT",
  "author": {
    "name": "Homa Wong (unional)",
    "email": "homawong@gmail.com"
  },
  "sideEffects": false,
  "type": "module",
  "exports": {
    "import": {
      "types": "./esm/index.d.ts",
      "default": "./esm/index.js"
    },
    "require": {
      "types": "./cjs/index.d.ts",
      "default": "./cjs/index.js"
    },
    "default": "./esm/index.js"
  },
  "main": "./cjs/index.js",
  "module": "./esm/index.js",
  "types": "./cjs/index.d.ts",
  "files": [
    "cjs",
    "esm",
    "ts",
    "!**/*.{spec,test,unit,accept,integrate,system,perf,stress}.*"
  ],
  "devDependencies": {
    "@changesets/cli": "^2.25.0",
    "@commitlint/cli": "^17.1.2",
    "@commitlint/config-conventional": "^17.1.0",
    "@jest/globals": "^29.5.0",
    "@repobuddy/jest": "^3.0.0",
    "@repobuddy/typescript": "^1.2.0",
    "@size-limit/preset-small-lib": "^8.1.0",
    "@typescript-eslint/eslint-plugin": "^5.41.0",
    "@typescript-eslint/parser": "^5.41.0",
    "cross-env": "^7.0.3",
    "depcheck": "^1.4.3",
    "eslint": "^8.26.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-harmony": "^7.1.0",
    "husky": "^8.0.1",
    "jest": "^29.5.0",
    "jest-validate": "^29.5.0",
    "jest-watch-suspend": "^1.1.2",
    "jest-watch-toggle-config-2": "^2.1.0",
    "jest-watch-typeahead": "^2.2.2",
    "npm-run-all": "^4.1.5",
    "pinst": "^3.0.0",
    "repobuddy": "^1.0.2",
    "rimraf": "^5.0.0",
    "size-limit": "^8.1.0",
    "ts-jest": "^29.0.3",
    "type-plus": "^7.0.1",
    "typescript": "^5.0.0"
  },
  "packageManager": "pnpm@8.6.0",
  "engines": {
    "node": ">=6"
  },
  "size-limit": [
    {
      "path": "./cjs/index.js",
      "limit": "5 KB"
    },
    {
      "path": "./esm/index.js",
      "limit": "5 KB"
    }
  ],
  "scripts": {
    "build": "run-p build:cjs build:esm",
    "build:cjs": "buddy ts build cjs",
    "build:esm": "tsc",
    "clean": "rimraf coverage cjs esm lib libm --glob *.tsbuildinfo || true",
    "coverage": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage",
    "cs": "changeset",
    "depcheck": "depcheck",
    "lint": "eslint --ext=ts,js .",
    "nuke": "run-s clean nuke:local",
    "nuke:local": "rimraf node_modules || true",
    "_postinstall": "husky install",
    "release": "pnpm cs publish",
    "size": "size-limit",
    "test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
    "verify": "npm-run-all clean -p build depcheck lint -p coverage size",
    "version": "pnpm cs version",
    "watch": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --watch",
    "watch:type": "tsc --watch"
  }
}