|
1 | 1 | { |
2 | 2 | "name": "merge-deep-ts", |
| 3 | + "version": "1.2.5", |
3 | 4 | "author": "Ilia Chernetskii <ichernetskii@gmail.com>", |
4 | | - "homepage": "https://github.com/ichernetskii/merge-deep-ts", |
5 | | - "repository": "ichernetskii/merge-deep-ts", |
| 5 | + "license": "MIT", |
| 6 | + "description": "Deep fast merge JavaScript objects with circular references handling and TypeScript support", |
| 7 | + "keywords": [ |
| 8 | + "merge", |
| 9 | + "deep", |
| 10 | + "deepmerge", |
| 11 | + "objects", |
| 12 | + "circular", |
| 13 | + "extend", |
| 14 | + "union", |
| 15 | + "clone", |
| 16 | + "assign", |
| 17 | + "copy", |
| 18 | + "recursive", |
| 19 | + "ts merge", |
| 20 | + "ts-merge", |
| 21 | + "typescript merge", |
| 22 | + "typescript-merge" |
| 23 | + ], |
| 24 | + "homepage": "https://github.com/ichernetskii/merge-deep-ts#readme", |
| 25 | + "repository": { |
| 26 | + "type": "git", |
| 27 | + "url": "https://github.com/ichernetskii/merge-deep-ts.git" |
| 28 | + }, |
6 | 29 | "bugs": { |
7 | 30 | "url": "https://github.com/ichernetskii/merge-deep-ts/issues" |
8 | 31 | }, |
9 | | - "version": "1.2.4", |
10 | | - "description": "Deep fast merge JavaScript objects with circular references handling and TypeScript support", |
11 | 32 | "type": "module", |
12 | 33 | "files": [ |
13 | | - "lib/**/*" |
| 34 | + "dist/**/*" |
14 | 35 | ], |
15 | 36 | "exports": { |
16 | 37 | ".": { |
17 | | - "import": "./lib/mjs/index.js", |
18 | | - "require": "./lib/cjs/index.js", |
19 | | - "types": "./lib/index.d.ts" |
| 38 | + "import": "./dist/mjs/index.js", |
| 39 | + "require": "./dist/cjs/index.js", |
| 40 | + "types": "./dist/index.d.ts" |
20 | 41 | }, |
21 | 42 | "./package.json": "./package.json" |
22 | 43 | }, |
23 | | - "module": "lib/mjs/index.js", |
24 | | - "main": "lib/cjs/index.js", |
25 | | - "types": "lib/index.d.ts", |
| 44 | + "module": "dist/mjs/index.js", |
| 45 | + "main": "dist/cjs/index.js", |
| 46 | + "types": "dist/index.d.ts", |
26 | 47 | "scripts": { |
27 | | - "build": "cpy 'src/[c,m]js/*' 'lib' && tsc --project tsconfig.mjs.json && tsc --project tsconfig.cjs.json", |
| 48 | + "build": "cpy 'src/[c,m]js/*' 'dist' && tsc --project tsconfig.mjs.json && tsc --project tsconfig.cjs.json", |
28 | 49 | "test": "jest", |
29 | 50 | "lint": "eslint .", |
30 | 51 | "format": "eslint --fix .", |
31 | 52 | "prepack": "yarn run build", |
32 | 53 | "prepublish": "yarn run lint && yarn run test" |
33 | 54 | }, |
34 | | - "keywords": [ |
35 | | - "merge", |
36 | | - "deep", |
37 | | - "deepmerge", |
38 | | - "objects", |
39 | | - "circular", |
40 | | - "extend", |
41 | | - "union", |
42 | | - "clone", |
43 | | - "copy", |
44 | | - "recursive" |
45 | | - ], |
46 | | - "license": "MIT", |
47 | 55 | "devDependencies": { |
48 | 56 | "@types/jest": "^29.5.1", |
49 | | - "@types/node": "^20.1.1", |
50 | | - "@typescript-eslint/eslint-plugin": "^5.59.5", |
51 | | - "@typescript-eslint/parser": "^5.59.5", |
| 57 | + "@types/node": "^20.2.3", |
| 58 | + "@typescript-eslint/eslint-plugin": "^5.59.7", |
| 59 | + "@typescript-eslint/parser": "^5.59.7", |
52 | 60 | "cpy-cli": "^4.2.0", |
53 | | - "eslint": "^8.40.0", |
| 61 | + "eslint": "^8.41.0", |
54 | 62 | "eslint-config-standard-with-typescript": "^34.0.1", |
55 | 63 | "eslint-plugin-import": "^2.27.5", |
56 | | - "eslint-plugin-n": "^15.7.0", |
| 64 | + "eslint-plugin-n": "^16.0.0", |
57 | 65 | "eslint-plugin-promise": "^6.1.1", |
58 | 66 | "jest": "^29.5.0", |
59 | 67 | "jest-junit": "^16.0.0", |
|
0 commit comments