package.json 916 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "update-browserslist-db",
  3. "version": "1.3.2",
  4. "description": "CLI tool to update caniuse-lite to refresh target browsers from Browserslist config",
  5. "keywords": [
  6. "browsers",
  7. "caniuse",
  8. "target"
  9. ],
  10. "license": "MIT",
  11. "author": "Andrey Sitnik <andrey@sitnik.es>",
  12. "repository": "browserslist/update-db",
  13. "funding": [
  14. {
  15. "type": "opencollective",
  16. "url": "https://opencollective.com/browserslist"
  17. },
  18. {
  19. "type": "tidelift",
  20. "url": "https://tidelift.com/funding/github/npm/browserslist"
  21. },
  22. {
  23. "type": "github",
  24. "url": "https://github.com/sponsors/ai"
  25. }
  26. ],
  27. "bin": "cli.js",
  28. "types": "./index.d.ts",
  29. "exports": {
  30. ".": "./index.js",
  31. "./package.json": "./package.json"
  32. },
  33. "dependencies": {
  34. "escalade": "^3.2.0",
  35. "picocolors": "^1.1.1"
  36. },
  37. "peerDependencies": {
  38. "browserslist": ">= 4.21.0"
  39. }
  40. }