package.json 967 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "normalize-wheel-es",
  3. "version": "1.2.0",
  4. "description": "Mouse wheel normalization across multiple multiple browsers.",
  5. "main": "dist/index.js",
  6. "module": "dist/index.mjs",
  7. "types": "index.d.ts",
  8. "author": "Bas Stottelaar",
  9. "contributors": [
  10. {
  11. "name": "三咲智子",
  12. "email": "sxzz@sxzz.moe",
  13. "url": "https://github.com/sxzz"
  14. }
  15. ],
  16. "license": "BSD-3-Clause",
  17. "bugs": {
  18. "url": "https://github.com/sxzz/normalize-wheel-es/issues"
  19. },
  20. "homepage": "https://github.com/sxzz/normalize-wheel-es#readme",
  21. "repository": {
  22. "type": "git",
  23. "url": "git+https://github.com/sxzz/normalize-wheel-es.git"
  24. },
  25. "keywords": [
  26. "mouse wheel",
  27. "normalization",
  28. "browser",
  29. "esm"
  30. ],
  31. "files": [
  32. "dist",
  33. "index.d.ts"
  34. ],
  35. "devDependencies": {
  36. "@swc/core": "^1.2.218",
  37. "bumpp": "^8.2.1",
  38. "tsup": "^6.1.3"
  39. },
  40. "scripts": {
  41. "build": "tsup",
  42. "release": "bumpp"
  43. }
  44. }