package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "@csstools/css-parser-algorithms",
  3. "description": "Algorithms to help you parse CSS from an array of tokens.",
  4. "version": "3.0.5",
  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-tokenizer": "^3.0.4"
  52. },
  53. "scripts": {},
  54. "homepage": "https://github.com/csstools/postcss-plugins/tree/main/packages/css-parser-algorithms#readme",
  55. "repository": {
  56. "type": "git",
  57. "url": "git+https://github.com/csstools/postcss-plugins.git",
  58. "directory": "packages/css-parser-algorithms"
  59. },
  60. "bugs": "https://github.com/csstools/postcss-plugins/issues",
  61. "keywords": [
  62. "css",
  63. "parser"
  64. ]
  65. }