package.json 770 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "postcss-safe-parser",
  3. "version": "7.0.1",
  4. "description": "Fault-tolerant CSS parser for PostCSS",
  5. "keywords": [
  6. "css",
  7. "postcss",
  8. "postcss-syntax",
  9. "parser",
  10. "fault tolerant"
  11. ],
  12. "author": "Andrey Sitnik <andrey@sitnik.ru>",
  13. "license": "MIT",
  14. "repository": "postcss/postcss-safe-parser",
  15. "engines": {
  16. "node": ">=18.0"
  17. },
  18. "main": "lib/safe-parse",
  19. "funding": [
  20. {
  21. "type": "opencollective",
  22. "url": "https://opencollective.com/postcss/"
  23. },
  24. {
  25. "type": "tidelift",
  26. "url": "https://tidelift.com/funding/github/npm/postcss-safe-parser"
  27. },
  28. {
  29. "type": "github",
  30. "url": "https://github.com/sponsors/ai"
  31. }
  32. ],
  33. "peerDependencies": {
  34. "postcss": "^8.4.31"
  35. }
  36. }