{ "manifest": { "name": "type-fest", "version": "2.19.0", "description": "A collection of essential TypeScript types", "license": "(MIT OR CC0-1.0)", "repository": { "type": "git", "url": "https://github.com/sindresorhus/type-fest.git" }, "funding": "https://github.com/sponsors/sindresorhus", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "https://sindresorhus.com" }, "engines": { "node": ">=12.20" }, "scripts": { "test": "xo && tsd && tsc && node script/test/source-files-extension.js" }, "files": [ "index.d.ts", "source" ], "keywords": [ "typescript", "ts", "types", "utility", "util", "utilities", "omit", "merge", "json" ], "devDependencies": { "@sindresorhus/tsconfig": "~0.7.0", "expect-type": "^0.13.0", "tsd": "^0.20.0", "typescript": "^4.6.3", "xo": "^0.43.0" }, "types": "./index.d.ts", "xo": { "rules": { "@typescript-eslint/ban-types": "off", "@typescript-eslint/indent": "off", "node/no-unsupported-features/es-builtins": "off", "import/extensions": "off", "@typescript-eslint/no-redeclare": "off", "@typescript-eslint/no-confusing-void-expression": "off" } }, "_registry": "npm", "_loc": "/home/josie/.cache/yarn/v6/npm-type-fest-2.19.0-88068015bb33036a598b952e55e9311a60fd3a9b-integrity/node_modules/type-fest/package.json", "readmeFilename": "readme.md", "readme": "
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\tSindre Sorhus' open source work is supported by the community\n\t\t\t\t\n\t\t\t
\n\t\t\tSpecial thanks to:\n\t\t\tstrictNullChecks set to true.\n\n\t[Playground](https://typescript-play.js.org/?target=6#code/C4TwDgpgBACg9gJ2AOQK4FsBGEFQLxQDOwCAlgHYDmUAPlORtrnQwDasDcAUFwPQBU-WAEMkUOADMowqAGNWwwoSgATCBIqlgpOOSjAAFsOBRSy1IQgr9cKJlSlW1mZYQA3HFH68u8xcoBlHA8EACEHJ08Aby4oKDBUTFZSWXjEFEYcAEIALihkXTR2YSSIAB54JDQsHAA+blj4xOTUsHSACkMzPKD3HHDHNQQAGjSkPMqMmoQASh7g-oihqBi4uNIpdraxPAI2VhmVxrX9AzMAOm2ppnwoAA4ABifuE4BfKAhWSyOTuK7CS7pao3AhXF5rV48E4ICDAVAIPT-cGQyG+XTEIgLMJLTx7CAAdygvRCA0iCHaMwarhJOIQjUBSHaACJHk8mYdeLwxtdcVAAOSsh58+lXdr7Dlcq7A3n3J4PEUdADMcspUE53OluAIUGVTx46oAKuAIAFZGQwCYAKIIBCILjUxaDHAMnla+iodjcIA)\n\n\t```ts\n\ttype PortNumber = string | number | null;\n\n\t/** Part of a class definition that is used to build a server */\n\tclass ServerBuilder {\n\t\t\tportNumber!: NonNullable