package.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "embla-carousel-reactive-utils",
  3. "version": "8.6.0",
  4. "author": "David Jerleke",
  5. "description": "Reactive utilities for Embla Carousel",
  6. "repository": {
  7. "type": "git",
  8. "url": "git+https://github.com/davidjerleke/embla-carousel"
  9. },
  10. "bugs": {
  11. "url": "https://github.com/davidjerleke/embla-carousel/issues"
  12. },
  13. "homepage": "https://www.embla-carousel.com",
  14. "license": "MIT",
  15. "keywords": [
  16. "slider",
  17. "carousel",
  18. "slideshow",
  19. "gallery",
  20. "lightweight",
  21. "touch",
  22. "javascript",
  23. "typescript",
  24. "react",
  25. "vue",
  26. "svelte",
  27. "solid"
  28. ],
  29. "main": "embla-carousel-reactive-utils.umd.js",
  30. "unpkg": "embla-carousel-reactive-utils.umd.js",
  31. "module": "./esm/embla-carousel-reactive-utils.esm.js",
  32. "types": "index.d.ts",
  33. "sideEffects": false,
  34. "files": [
  35. "embla-carousel-reactive-utils*",
  36. "components/**/*",
  37. "index.d.ts",
  38. "esm/**/*",
  39. "cjs/**/*"
  40. ],
  41. "scripts": {
  42. "test": "jest --config jest.config.js",
  43. "build": "rollup --bundleConfigAsCjs -c",
  44. "start": "rollup --bundleConfigAsCjs -c --watch --environment BUILD:development",
  45. "eslint:report": "eslint \"src/**/*.{js,tsx,ts}\""
  46. },
  47. "devDependencies": {
  48. "@types/jest": "^29.5.6",
  49. "@typescript-eslint/eslint-plugin": "^6.9.0",
  50. "@typescript-eslint/parser": "^6.9.0",
  51. "eslint": "^8.52.0",
  52. "eslint-config-prettier": "^9.0.0",
  53. "eslint-plugin-prettier": "^4.0.0",
  54. "jest": "^29.5.0",
  55. "jest-environment-jsdom": "^29.5.0",
  56. "prettier": "2.8.8",
  57. "rollup": "^4.22.4",
  58. "ts-jest": "^29.1.1",
  59. "typescript": "^5.2.2"
  60. },
  61. "peerDependencies": {
  62. "embla-carousel": "8.6.0"
  63. },
  64. "exports": {
  65. "./package.json": "./package.json",
  66. ".": {
  67. "import": {
  68. "types": "./esm/index.d.ts",
  69. "default": "./esm/embla-carousel-reactive-utils.esm.js"
  70. },
  71. "require": {
  72. "types": "./cjs/index.d.ts",
  73. "default": "./cjs/embla-carousel-reactive-utils.cjs.js"
  74. }
  75. }
  76. }
  77. }