{
  "name": "deepmerge-plus",
  "version": "4.0.1",
  "description": "用於深度（遞迴）合併 JavaScript 物件的函式庫 / A library for deep (recursive) merging of JavaScript objects",
  "keywords": [
    "deepmerge",
    "deep",
    "merge",
    "clone",
    "copy",
    "extend",
    "object",
    "recursive",
    "array",
    "typescript",
    "javascript",
    "util",
    "helper",
    "combine"
  ],
  "homepage": "https://github.com/bluelovers/deepmerge#readme",
  "bugs": {
    "url": "https://github.com/bluelovers/deepmerge/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/bluelovers/deepmerge.git"
  },
  "license": "MIT",
  "author": "Nick Fisher",
  "sideEffects": false,
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.cjs",
      "import": "./dist/index.esm.mjs"
    },
    "./core": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.cjs",
      "import": "./dist/index.esm.mjs"
    },
    "./package.json": "./package.json",
    "./src/*": "./src/*"
  },
  "main": "dist/index.cjs",
  "unpkg": "dist/index.umd.production.min.cjs",
  "module": "dist/index.esm.mjs",
  "types": "dist/index.d.ts",
  "typings": "dist/index.d.ts",
  "directories": {
    "test": "test"
  },
  "scripts": {
    "coverage": "pnpm run test -- --coverage",
    "test": "node --run test:jest:snapshot --",
    "test:jest": "jest --passWithNoTests",
    "test:jest:clearCache": "jest --clearCache",
    "test:jest:coverage": "node --run test:jest -- --coverage",
    "test:jest:snapshot": "node --run test:jest -- -u",
    "build": "node --run build:tsdx && node --run build:dts:bundle",
    "build:dts:bundle": "ynpx @bluelovers/dts-bundle-generator -o ./dist/index.d.ts ./src/index.ts --no-banner --inline-declare-global & echo build:dts:bundle",
    "build:dts:copy": "copy .\\src\\index.d.ts .\\dist\\index.d.ts & echo build:dts",
    "build:dts:tsc": "node --run build:dts:copy && node --run build:dts:tsc:emit && node --run build:dts:copy",
    "build:dts:tsc:emit": "tsc --emitDeclarationOnly --declaration --noEmit false",
    "build:tsdx": "ynpx @bluelovers/tsdx build --target node",
    "npm:publish": "npm publish",
    "npm:publish:bump": "pnpm run version:bump && npm publish",
    "ws:fix-all": "yarn-tool fix-all --overwriteHostedGitInfo",
    "ws:fix-all:resetStaticFiles": "pnpm run ws:fix-all -- --resetStaticFiles",
    "preversion": "echo preversion && pnpm run test",
    "version": "echo version",
    "version:bump": "yarn-tool version",
    "prepublishOnly": "pnpm run preversion",
    "postpublish": "pnpm run postpublish:changelog && pnpm run postpublish:git:commit && pnpm run postpublish:git:tag && pnpm run postpublish:git:push",
    "postpublish:changelog": "ynpx --quiet @yarn-tool/changelog && git add ./CHANGELOG.md",
    "postpublish:git:commit": "git commit -m \"chore(release): publish\" . & echo postpublish:git:commit",
    "postpublish:git:push": "git push --follow-tags",
    "postpublish:git:tag": "ynpx --quiet @yarn-tool/tag",
    "postpublishOnly": "echo postpublishOnly",
    "ncu": "yarn-tool ncu -u",
    "tsc:showConfig": "ynpx get-current-tsconfig -p"
  },
  "dependencies": {
    "is-mergeable-object": "1.1.1",
    "ts-type": "^3.0.10",
    "tslib": "^2.8.1"
  },
  "devDependencies": {
    "@bluelovers/jest-config": "^1.1.11",
    "@bluelovers/tsconfig": "^2.0.2",
    "@types/jest": "^30.0.0",
    "@types/lodash": "^4.17.24",
    "@types/node": "^25.5.0",
    "@yarn-tool/require-resolve": "^4.0.6",
    "@yarn-tool/ws-find-up-paths": "^1.0.19",
    "lodash": "^4.17.23",
    "moment": "^2.30.1"
  }
}
