UNPKG

idb

Version:

A small wrapper that makes IndexedDB usable

52 lines 1.34 kB
{ "name": "idb", "version": "8.0.2", "description": "A small wrapper that makes IndexedDB usable", "main": "./build/index.cjs", "module": "./build/index.js", "types": "./build/index.d.ts", "exports": { ".": { "types": "./build/index.d.ts", "module": "./build/index.js", "import": "./build/index.js", "default": "./build/index.cjs" }, "./build/*": "./build/*", "./package.json": "./package.json" }, "files": [ "build/**", "with-*", "CHANGELOG.md" ], "type": "module", "repository": { "type": "git", "url": "git://github.com/jakearchibald/idb.git" }, "author": "Jake Archibald", "license": "ISC", "devDependencies": { "@rollup/plugin-commonjs": "^28.0.2", "@rollup/plugin-node-resolve": "^16.0.0", "@rollup/plugin-terser": "^0.4.4", "@types/chai": "^5.0.1", "@types/estree": "^1.0.6", "@types/mocha": "^10.0.10", "@types/node": "^22.10.2", "chai": "^5.1.2", "conditional-type-checks": "^1.0.6", "del": "^8.0.0", "filesize": "^10.1.6", "glob": "^11.0.0", "mocha": "^11.0.1", "prettier": "^3.4.2", "rollup": "^4.28.1", "typescript": "^5.7.2" }, "scripts": { "build": "PRODUCTION=1 rollup -c && node --experimental-modules lib/size-report.mjs", "dev": "rollup -c --watch" } }