1 | {
|
2 | "name": "idb",
|
3 | "version": "8.0.0",
|
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 | "types": "./build/index.d.ts",
|
11 | "module": "./build/index.js",
|
12 | "import": "./build/index.js",
|
13 | "default": "./build/index.cjs"
|
14 | },
|
15 | "./build/*": "./build/*",
|
16 | "./package.json": "./package.json"
|
17 | },
|
18 | "files": [
|
19 | "build/**",
|
20 | "with-*",
|
21 | "CHANGELOG.md"
|
22 | ],
|
23 | "type": "module",
|
24 | "scripts": {
|
25 | "build": "PRODUCTION=1 rollup -c && node --experimental-modules lib/size-report.mjs",
|
26 | "dev": "rollup -c --watch",
|
27 | "prepack": "npm run build"
|
28 | },
|
29 | "repository": {
|
30 | "type": "git",
|
31 | "url": "git://github.com/jakearchibald/idb.git"
|
32 | },
|
33 | "author": "Jake Archibald",
|
34 | "license": "ISC",
|
35 | "devDependencies": {
|
36 | "@rollup/plugin-commonjs": "^22.0.2",
|
37 | "@rollup/plugin-node-resolve": "^14.1.0",
|
38 | "@types/chai": "^4.3.3",
|
39 | "@types/estree": "^1.0.0",
|
40 | "@types/mocha": "^9.1.1",
|
41 | "chai": "^4.3.6",
|
42 | "conditional-type-checks": "^1.0.6",
|
43 | "del": "^7.0.0",
|
44 | "filesize": "^9.0.11",
|
45 | "glob": "^8.0.3",
|
46 | "mocha": "^10.0.0",
|
47 | "prettier": "^2.7.1",
|
48 | "rollup": "^2.79.0",
|
49 | "rollup-plugin-terser": "^7.0.2",
|
50 | "typescript": "^4.8.3"
|
51 | }
|
52 | }
|