| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
 | | { |  |     "name": "type-fest", |  |     "version": "0.21.3", |  |     "description": "A collection of essential TypeScript types", |  |     "license": "(MIT OR CC0-1.0)", |  |     "repository": "sindresorhus/type-fest", |  |     "funding": "https://github.com/sponsors/sindresorhus", |  |     "author": { |  |         "name": "Sindre Sorhus", |  |         "email": "sindresorhus@gmail.com", |  |         "url": "https://sindresorhus.com" |  |     }, |  |     "engines": { |  |         "node": ">=10" |  |     }, |  |     "scripts": { |  |         "test": "xo && tsd && tsc" |  |     }, |  |     "files": [ |  |         "index.d.ts", |  |         "base.d.ts", |  |         "source", |  |         "ts41" |  |     ], |  |     "keywords": [ |  |         "typescript", |  |         "ts", |  |         "types", |  |         "utility", |  |         "util", |  |         "utilities", |  |         "omit", |  |         "merge", |  |         "json" |  |     ], |  |     "devDependencies": { |  |         "@sindresorhus/tsconfig": "~0.7.0", |  |         "expect-type": "^0.11.0", |  |         "tsd": "^0.14.0", |  |         "typescript": "^4.1.3", |  |         "xo": "^0.36.1" |  |     }, |  |     "types": "./index.d.ts", |  |     "typesVersions": { |  |         ">=4.1": { |  |             "*": [ |  |                 "ts41/*" |  |             ] |  |         } |  |     }, |  |     "xo": { |  |         "rules": { |  |             "@typescript-eslint/ban-types": "off", |  |             "@typescript-eslint/indent": "off", |  |             "node/no-unsupported-features/es-builtins": "off" |  |         } |  |     } |  | } | 
 |