package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "@csstools/color-helpers",
  3. "description": "Color helpers to ease transformation between formats, gamut, etc",
  4. "version": "6.0.1",
  5. "contributors": [
  6. {
  7. "name": "Antonio Laguna",
  8. "email": "antonio@laguna.es",
  9. "url": "https://antonio.laguna.es"
  10. },
  11. {
  12. "name": "Romain Menke",
  13. "email": "romainmenke@gmail.com"
  14. }
  15. ],
  16. "license": "MIT-0",
  17. "funding": [
  18. {
  19. "type": "github",
  20. "url": "https://github.com/sponsors/csstools"
  21. },
  22. {
  23. "type": "opencollective",
  24. "url": "https://opencollective.com/csstools"
  25. }
  26. ],
  27. "engines": {
  28. "node": ">=20.19.0"
  29. },
  30. "type": "module",
  31. "exports": {
  32. ".": {
  33. "types": "./dist/index.d.ts",
  34. "default": "./dist/index.mjs"
  35. }
  36. },
  37. "files": [
  38. "CHANGELOG.md",
  39. "LICENSE.md",
  40. "README.md",
  41. "dist"
  42. ],
  43. "scripts": {},
  44. "homepage": "https://github.com/csstools/postcss-plugins/tree/main/packages/color-helpers#readme",
  45. "repository": {
  46. "type": "git",
  47. "url": "git+https://github.com/csstools/postcss-plugins.git",
  48. "directory": "packages/color-helpers"
  49. },
  50. "bugs": "https://github.com/csstools/postcss-plugins/issues",
  51. "keywords": [
  52. "colors",
  53. "css"
  54. ]
  55. }