vvet_backend_1/node_modules/idb-keyval/package.json

82 lines
2.0 KiB
JSON
Raw Permalink Normal View History

2025-05-09 12:46:18 +05:30
{
"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"
}
}