package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "@csstools/selector-specificity",
  3. "description": "Determine selector specificity with postcss-selector-parser",
  4. "version": "5.0.0",
  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-0",
  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. "postcss-selector-parser": "^7.0.0"
  52. },
  53. "scripts": {},
  54. "homepage": "https://github.com/csstools/postcss-plugins/tree/main/packages/selector-specificity#readme",
  55. "repository": {
  56. "type": "git",
  57. "url": "git+https://github.com/csstools/postcss-plugins.git",
  58. "directory": "packages/selector-specificity"
  59. },
  60. "bugs": "https://github.com/csstools/postcss-plugins/issues",
  61. "keywords": [
  62. "css",
  63. "postcss-selector-parser",
  64. "specificity"
  65. ]
  66. }