package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "safari-14-idb-fix",
  3. "version": "3.0.0",
  4. "description": "Working around a Safari 14 IndexedDB bug",
  5. "homepage": "https://github.com/jakearchibald/safari-14-idb-fix",
  6. "main": "./dist/index.cjs",
  7. "module": "./dist/index.js",
  8. "types": "./dist/index.d.ts",
  9. "exports": {
  10. ".": {
  11. "module": "./dist/index.js",
  12. "import": "./dist/index.js",
  13. "require": "./dist/index.cjs"
  14. },
  15. "./dist/cjs": "./dist/index.cjs",
  16. "./dist/cjs-compat": "./dist/index.cjs",
  17. "./dist/esm": "./dist/index.js",
  18. "./dist/esm-compat": "./dist/index.js",
  19. "./dist/iife": "./dist/iife.min.js",
  20. "./dist/iife-compat": "./dist/iife.min.js",
  21. "./package.json": "./package.json"
  22. },
  23. "type": "module",
  24. "scripts": {
  25. "build": "rollup -c",
  26. "prepack": "npm run build"
  27. },
  28. "files": [
  29. "dist/**"
  30. ],
  31. "license": "Apache-2.0",
  32. "devDependencies": {
  33. "del": "^6.0.0",
  34. "prettier": "^2.3.1",
  35. "rollup": "^2.52.1",
  36. "rollup-plugin-terser": "^7.0.2",
  37. "typescript": "^4.3.3"
  38. }
  39. }