package.json 734 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "clsx",
  3. "version": "1.2.1",
  4. "repository": "lukeed/clsx",
  5. "description": "A tiny (228B) utility for constructing className strings conditionally.",
  6. "module": "dist/clsx.m.js",
  7. "unpkg": "dist/clsx.min.js",
  8. "main": "dist/clsx.js",
  9. "types": "clsx.d.ts",
  10. "license": "MIT",
  11. "author": {
  12. "name": "Luke Edwards",
  13. "email": "luke.edwards05@gmail.com",
  14. "url": "https://lukeed.com"
  15. },
  16. "engines": {
  17. "node": ">=6"
  18. },
  19. "scripts": {
  20. "build": "node bin",
  21. "test": "uvu -r esm test"
  22. },
  23. "files": [
  24. "*.d.ts",
  25. "dist"
  26. ],
  27. "keywords": [
  28. "classes",
  29. "classname",
  30. "classnames"
  31. ],
  32. "devDependencies": {
  33. "esm": "3.2.25",
  34. "terser": "4.8.0",
  35. "uvu": "0.5.4"
  36. }
  37. }