package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "@csstools/css-color-parser",
  3. "description": "Parse CSS color values",
  4. "version": "4.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",
  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. "dependencies": {
  44. "@csstools/color-helpers": "^6.0.1",
  45. "@csstools/css-calc": "^3.0.0"
  46. },
  47. "peerDependencies": {
  48. "@csstools/css-parser-algorithms": "^4.0.0",
  49. "@csstools/css-tokenizer": "^4.0.0"
  50. },
  51. "scripts": {},
  52. "homepage": "https://github.com/csstools/postcss-plugins/tree/main/packages/css-color-parser#readme",
  53. "repository": {
  54. "type": "git",
  55. "url": "git+https://github.com/csstools/postcss-plugins.git",
  56. "directory": "packages/css-color-parser"
  57. },
  58. "bugs": "https://github.com/csstools/postcss-plugins/issues",
  59. "keywords": [
  60. "color",
  61. "css",
  62. "parser"
  63. ]
  64. }