package.json 1.1 KB

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