package.json 1.2 KB

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