UNPKG

merge-deep-ts

Version:

Deep fast merge JavaScript objects with circular references handling and TypeScript support

73 lines 1.95 kB
{ "name": "merge-deep-ts", "version": "1.2.13", "author": "Ilia Chernetskii <ichernetskii@gmail.com>", "license": "MIT", "description": "Deep fast merge JavaScript objects with circular references handling and TypeScript support", "keywords": [ "merge", "deep", "deepmerge", "objects", "circular", "extend", "union", "clone", "assign", "copy", "recursive", "ts merge", "ts-merge", "typescript merge", "typescript-merge" ], "homepage": "https://github.com/ichernetskii/merge-deep-ts#readme", "repository": { "type": "git", "url": "https://github.com/ichernetskii/merge-deep-ts.git" }, "bugs": { "url": "https://github.com/ichernetskii/merge-deep-ts/issues" }, "type": "module", "files": [ "dist/**/*" ], "exports": { ".": { "import": "./dist/mjs/index.js", "require": "./dist/cjs/index.js", "types": "./dist/index.d.ts" }, "./package.json": "./package.json" }, "module": "dist/mjs/index.js", "main": "dist/cjs/index.js", "types": "dist/index.d.ts", "scripts": { "build": "cpy 'src/[c,m]js/*' 'dist' && tsc --project tsconfig.mjs.json && tsc --project tsconfig.cjs.json", "test": "jest", "lint": "eslint .", "format": "eslint --fix .", "prepack": "yarn run build", "prepublish": "yarn run lint && yarn run test" }, "devDependencies": { "@types/jest": "^29.5.1", "@types/node": "^20.2.3", "@typescript-eslint/eslint-plugin": "^5.59.7", "@typescript-eslint/parser": "^5.59.7", "cpy-cli": "^4.2.0", "eslint": "^8.41.0", "eslint-config-standard-with-typescript": "^34.0.1", "eslint-plugin-import": "^2.27.5", "eslint-plugin-n": "^16.0.0", "eslint-plugin-promise": "^6.1.1", "jest": "^29.5.0", "jest-junit": "^16.0.0", "ts-jest": "^29.1.0", "ts-node": "^10.9.1", "typescript": "5.0.4" }, "packageManager": "yarn@4.1.1" }