chex-storage
Version:
A wrapper library for Chrome extension storage local - the standard storage in the chrome extension.
65 lines (64 loc) • 1.6 kB
JSON
{
"name": "chex-storage",
"version": "1.1.0",
"description": "A wrapper library for Chrome extension storage local - the standard storage in the chrome extension.",
"type": "module",
"module": "dist/index.esm.js",
"main": "dist/index.js",
"typings": "dist/type/extension/index.d.ts",
"files": [
"dist/*"
],
"exports": {
".": "./dist/index.esm.js",
"./web-application": "./dist/web-application/index.js",
"./bg-consumer": "./dist/bg-consumer.js"
},
"typesVersions": {
"*": {
"web-application": [
"dist/type/web-application"
],
"bg-consumer": [
"dist/type/extension/bg-consumer.d.ts"
]
}
},
"scripts": {
"build": "node build.dev.mjs",
"dev:tsc": "tsc --watch --preserveWatchOutput",
"dev:esbuild": "yarn run build --watch",
"dev": "run-p dev:*",
"test": "jest"
},
"author": "win-le",
"keywords": [
"chrome-extension-storage",
"storage-api"
],
"license": "ISC",
"devDependencies": {
"@types/chrome": "^0.0.269",
"@types/jest": "^29.5.12",
"esbuild-plugin-tsc": "^0.4.0",
"jest": "^29.7.0",
"jest-esbuild": "^0.3.0",
"npm-run-all": "^4.1.5",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4"
},
"dependencies": {
"esbuild": "^0.23.0"
},
"peerDependencies": {
"@types/chrome": "^0.0.269"
},
"repository": {
"type": "git",
"url": "git+https://github.com/win-le/chex-storage.git"
},
"bugs": {
"url": "https://github.com/win-le/chex-storage/issues"
},
"homepage": "https://github.com/win-le/chex-storage#readme"
}