{
  "name": "@extend-chrome/storage",
  "version": "1.5.0",
  "description": "This is a wrapper for the Chrome Extension Storage API that adds promises and functional set transactions similar to the React `this.setState` API. Functional set transactions make it easy to use the Chrome Storage API to share and manage state between different contexts in a Chrome Extension.",
  "repository": "extend-chrome/storage",
  "license": "MIT",
  "author": "<jacksteamdev@gmail.com>",
  "main": "lib/index-cjs.js",
  "module": "lib/index-esm.js",
  "types": "types/index.d.ts",
  "files": [
    "bucket",
    "jest",
    "lib",
    "types"
  ],
  "scripts": {
    "build:pre": "rm -rf lib types hooks jest bucket",
    "build": "run-p build:pre build:pro build:types build:copy",
    "build:copy": "run-p build:copy:*",
    "build:copy:bucket": "copyfiles -f src/bucket/package.json bucket",
    "build:copy:jest": "copyfiles -f src/jest/package.json jest",
    "build:dev": "rollup -c --environment NODE_ENV:development",
    "build:pro": "rollup -c --environment NODE_ENV:production",
    "build:types": "tsc -p tsconfig.d.json",
    "prepublishOnly": "npm run build",
    "postpublish": "rm -rf node_modules package-lock.json && pnpm i",
    "start": "run-p start:*",
    "start:rollup": "npm run build:dev -- -w",
    "start:tsc": "tsc -b tsconfig.d.json -w",
    "test:tsc": "tsc --noEmit",
    "test:jest": "jest",
    "test": "run-s build test:*"
  },
  "dependencies": {
    "chrome-promise": "^3.0.5",
    "rxjs": "^6.5.5 || ^7.1.0"
  },
  "devDependencies": {
    "@rollup/plugin-commonjs": "^12.0.0",
    "@rollup/plugin-node-resolve": "^8.0.0",
    "@rollup/plugin-typescript": "^4.1.2",
    "@sucrase/jest-plugin": "^2.0.0",
    "@types/chrome": "^0.0.142",
    "@types/jest": "^25.2.3",
    "@types/jest-in-case": "^1.0.2",
    "@types/node": "^14.0.4",
    "@types/puppeteer": "^3.0.0",
    "@types/react": "^16.9.35",
    "@types/react-dom": "^16.9.8",
    "@typescript-eslint/eslint-plugin": "^2.34.0",
    "@typescript-eslint/parser": "^2.34.0",
    "copyfiles": "^2.2.0",
    "delay": "^4.3.0",
    "eslint": "^7.0.0",
    "eslint-plugin-jest": "^23.13.1",
    "jest": "26.6.3",
    "jest-in-case": "^1.0.2",
    "npm-run-all": "^4.1.5",
    "prettier": "^2.0.5",
    "rollup": "^2.10.5",
    "rollup-plugin-copy2": "^0.2.0",
    "rxjs": "^7.1.0",
    "ts-jest": "^26.5.6",
    "tslib": "^2.2.0",
    "typescript": "^4.2.4"
  }
}
