{
  "name": "redux-persist-transform-encrypt",
  "version": "5.0.0",
  "description": "Encrypt your Redux store.",
  "type": "module",
  "module": "lib/index.js",
  "types": "lib/index.d.ts",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/maxdeviant/redux-persist-transform-encrypt.git"
  },
  "keywords": [
    "redux",
    "redux-persist",
    "redux-persist-transform",
    "encryption"
  ],
  "author": "Marshall Bowers <elliott.codes@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/maxdeviant/redux-persist-transform-encrypt/issues"
  },
  "homepage": "https://github.com/maxdeviant/redux-persist-transform-encrypt#readme",
  "files": [
    "lib/",
    "index.d.ts",
    "!**/__tests__/"
  ],
  "peerDependencies": {
    "redux": ">3.0.0",
    "redux-persist": "^6.x.x"
  },
  "dependencies": {
    "crypto-js": "^4.1.1",
    "json-stringify-safe": "^5.0.1"
  },
  "devDependencies": {
    "@types/crypto-js": "^4.1.1",
    "@types/json-stringify-safe": "^5.0.0",
    "@types/node": "^18.15.8",
    "@types/sinon": "^10.0.13",
    "ava": "^5.2.0",
    "prettier": "^2.8.7",
    "redux": "^4.2.1",
    "redux-persist": "^6.0.0",
    "sinon": "^15.0.2",
    "ts-node": "^10.9.1",
    "typescript": "^5.0.2"
  },
  "scripts": {
    "format": "prettier --ignore-path .gitignore --write '**/*.+(js|json|md|ts|tsx)'",
    "build": "tsc -p . --outDir lib/",
    "test": "ava"
  }
}