package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "@csstools/media-query-list-parser",
  3. "description": "Parse CSS media query lists.",
  4. "version": "4.0.3",
  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": ">=18"
  29. },
  30. "type": "module",
  31. "main": "dist/index.cjs",
  32. "module": "dist/index.mjs",
  33. "exports": {
  34. ".": {
  35. "import": {
  36. "types": "./dist/index.d.ts",
  37. "default": "./dist/index.mjs"
  38. },
  39. "require": {
  40. "default": "./dist/index.cjs"
  41. }
  42. }
  43. },
  44. "files": [
  45. "CHANGELOG.md",
  46. "LICENSE.md",
  47. "README.md",
  48. "dist"
  49. ],
  50. "peerDependencies": {
  51. "@csstools/css-parser-algorithms": "^3.0.5",
  52. "@csstools/css-tokenizer": "^3.0.4"
  53. },
  54. "scripts": {},
  55. "homepage": "https://github.com/csstools/postcss-plugins/tree/main/packages/media-query-list-parser#readme",
  56. "repository": {
  57. "type": "git",
  58. "url": "git+https://github.com/csstools/postcss-plugins.git",
  59. "directory": "packages/media-query-list-parser"
  60. },
  61. "bugs": "https://github.com/csstools/postcss-plugins/issues",
  62. "keywords": [
  63. "css",
  64. "media query",
  65. "parser"
  66. ]
  67. }