package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "type-fest",
  3. "version": "0.20.2",
  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": ">=10"
  15. },
  16. "scripts": {
  17. "//test": "xo && tsd && tsc",
  18. "test": "xo && tsc"
  19. },
  20. "files": [
  21. "index.d.ts",
  22. "base.d.ts",
  23. "source",
  24. "ts41"
  25. ],
  26. "keywords": [
  27. "typescript",
  28. "ts",
  29. "types",
  30. "utility",
  31. "util",
  32. "utilities",
  33. "omit",
  34. "merge",
  35. "json"
  36. ],
  37. "devDependencies": {
  38. "@sindresorhus/tsconfig": "~0.7.0",
  39. "tsd": "^0.13.1",
  40. "typescript": "^4.1.2",
  41. "xo": "^0.35.0"
  42. },
  43. "types": "./index.d.ts",
  44. "typesVersions": {
  45. ">=4.1": {
  46. "*": [
  47. "ts41/*"
  48. ]
  49. }
  50. },
  51. "xo": {
  52. "rules": {
  53. "@typescript-eslint/ban-types": "off",
  54. "@typescript-eslint/indent": "off",
  55. "node/no-unsupported-features/es-builtins": "off"
  56. }
  57. }
  58. }