-
Notifications
You must be signed in to change notification settings - Fork 146
/
package.json
81 lines (81 loc) · 2.02 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "idb-keyval",
"version": "6.2.1",
"description": "A super-simple-small keyval store built on top of IndexedDB",
"main": "./dist/compat.cjs",
"module": "./dist/compat.js",
"unpkg": "./dist/iife-compat.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"import": "./dist/index.js",
"default": "./dist/index.cjs"
},
"./dist/*": "./dist/*",
"./package.json": "./package.json"
},
"files": [
"dist/**"
],
"type": "module",
"types": "./dist/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "rollup -c && node lib/size-report.js",
"dev": "rollup -cw & serve",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jakearchibald/idb-keyval.git"
},
"keywords": [
"idb",
"indexeddb",
"store",
"keyval",
"localstorage",
"storage",
"promise"
],
"author": "Jake Archibald",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jakearchibald/idb-keyval/issues"
},
"homepage": "https://github.com/jakearchibald/idb-keyval#readme",
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/plugin-external-helpers": "^7.17.12",
"@babel/plugin-transform-runtime": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"@babel/runtime": "^7.18.3",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"chai": "^4.3.6",
"conditional-type-checks": "^1.0.6",
"del": "^6.1.1",
"filesize": "^9.0.9",
"glob": "^8.0.3",
"husky": "^8.0.1",
"lint-staged": "^13.0.2",
"mocha": "^10.0.0",
"prettier": "^2.7.1",
"rollup": "^2.75.7",
"rollup-plugin-terser": "^7.0.2",
"serve": "^13.0.2",
"typescript": "^4.7.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md,ts,html}": "prettier --write"
}
}