package.json 782 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "type-fest",
  3. "version": "0.18.1",
  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"
  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. "tsd": "^0.13.1",
  36. "xo": "^0.28.2"
  37. },
  38. "types": "index.d.ts",
  39. "xo": {
  40. "rules": {
  41. "@typescript-eslint/indent": "off",
  42. "func-call-spacing": "off"
  43. }
  44. }
  45. }