UNPKG

reduxed-chrome-storage

Version:

Redux interface to chrome.storage (browser.storage). A unified way to use Redux in all modern browser extensions. The only way to get Redux working in Manifest V3 Chrome extensions

71 lines (70 loc) 1.99 kB
{ "name": "reduxed-chrome-storage", "version": "3.0.10", "description": "Redux interface to chrome.storage (browser.storage). A unified way to use Redux in all modern browser extensions. The only way to get Redux working in Manifest V3 Chrome extensions", "license": "MIT", "author": "Savr Goryaev aka hindmost", "repository": "github:hindmost/reduxed-chrome-storage", "bugs": "https://github.com/hindmost/reduxed-chrome-storage/issues", "keywords": [ "redux", "chrome", "extension", "chrome-extension", "storage", "chrome-storage", "browser-extension", "webextension", "store", "state" ], "main": "dist/index.js", "module": "dist/index.esm.js", "unpkg": "dist/index.min.js", "types": "dist/index.d.ts", "files": [ "dist" ], "dependencies": { "uuid": "^8.3" }, "peerDependencies": { "redux": "^4" }, "devDependencies": { "chai": "^4.3", "eslint": "^8.23", "eslint-import-resolver-typescript": "^3.5", "eslint-plugin-import": "^2.26", "mocha": "^10.0", "redux": "^4.2", "@reduxjs/toolkit": "1.8", "rollup": "^2.79", "@rollup/plugin-buble": "^0.21", "rollup-plugin-delete": "^2.0", "rollup-plugin-license": "^2.8", "@rollup/plugin-node-resolve": "13.3", "rollup-plugin-terser": "^7.0", "rollup-plugin-typescript2": "^0.33", "sinon": "^14.0", "ts-mocha": "^10.0", "typescript": "^4.8", "@types/chai": "^4.3", "@types/mocha": "^9.1", "@types/node": "^18.7", "@types/sinon": "^10.0", "@types/uuid": "^8.3", "@typescript-eslint/eslint-plugin": "^5.36", "@typescript-eslint/parser": "^5.36" }, "scripts": { "prebuild": "npm run lint", "build": "rollup -c", "dev": "rollup -c -w", "lint": "eslint src --ext .ts", "lint:test": "eslint test --ext .ts", "pretest": "npm run lint:test", "test": "ts-mocha -p test/tsconfig.json test/*.ts", "prepublishOnly": "npm run build" } }