This repository was archived by the owner on Feb 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
55 lines (55 loc) · 1.4 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "redux-persist-transform-encrypt",
"version": "5.1.1",
"description": "Encrypt your Redux store.",
"type": "module",
"exports": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"scripts": {
"prepublishOnly": "pnpm run build",
"format": "prettier --ignore-path .gitignore --write '**/*.+(js|json|md|ts|tsx)'",
"build": "tsc -p . --outDir lib/",
"test": "vitest run"
},
"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 <[email protected]>",
"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.2.0",
"json-stringify-safe": "^5.0.1"
},
"devDependencies": {
"@types/crypto-js": "^4.1.3",
"@types/json-stringify-safe": "^5.0.2",
"@types/node": "^18.15.8",
"prettier": "^2.8.7",
"redux": "^4.2.1",
"redux-persist": "^6.0.0",
"typescript": "^5.0.2",
"vitest": "^0.34.6"
}
}