GSI - Employe Self Service Mobile
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.4 KiB

2 months ago
  1. {
  2. "name": "idb",
  3. "version": "7.0.1",
  4. "description": "A small wrapper that makes IndexedDB usable",
  5. "main": "./build/index.cjs",
  6. "module": "./build/index.js",
  7. "types": "./build/index.d.ts",
  8. "exports": {
  9. ".": {
  10. "module": "./build/index.js",
  11. "import": "./build/index.js",
  12. "default": "./build/index.cjs"
  13. },
  14. "./with-async-ittr": {
  15. "module": "./with-async-ittr.js",
  16. "import": "./with-async-ittr.js",
  17. "default": "./with-async-ittr.cjs"
  18. },
  19. "./build/*": "./build/*",
  20. "./package.json": "./package.json"
  21. },
  22. "files": [
  23. "build/**",
  24. "with-*",
  25. "CHANGELOG.md"
  26. ],
  27. "type": "module",
  28. "scripts": {
  29. "build": "PRODUCTION=1 rollup -c && node --experimental-modules lib/size-report.mjs",
  30. "dev": "rollup -c --watch",
  31. "prepack": "npm run build"
  32. },
  33. "repository": {
  34. "type": "git",
  35. "url": "git://github.com/jakearchibald/idb.git"
  36. },
  37. "author": "Jake Archibald",
  38. "license": "ISC",
  39. "devDependencies": {
  40. "@rollup/plugin-commonjs": "^21.0.1",
  41. "@types/chai": "^4.2.22",
  42. "@types/mocha": "^9.0.0",
  43. "chai": "^4.3.4",
  44. "conditional-type-checks": "^1.0.5",
  45. "del": "^6.0.0",
  46. "filesize": "^8.0.6",
  47. "glob": "^7.2.0",
  48. "mocha": "^9.1.3",
  49. "prettier": "^2.4.1",
  50. "rollup": "^2.59.0",
  51. "rollup-plugin-node-resolve": "^5.2.0",
  52. "rollup-plugin-terser": "^7.0.2",
  53. "typescript": "^4.3.1-rc"
  54. }
  55. }