-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.59 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.59 KB
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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@sjsreehari/encypher",
"version": "1.0.1",
"description": "A lightweight React hook for encrypted localStorage/sessionStorage with a useState-like API.",
"main": "index.js",
"module": "index.js",
"exports": {
".": {
"import": "./index.js",
"require": "./index.js"
}
},
"files": [
"index.js",
"src/",
"dist/",
"README.md"
],
"keywords": [
"react",
"hook",
"encrypted",
"localStorage",
"sessionStorage",
"crypto",
"useState"
],
"peerDependencies": {
"react": ">=17.0.0"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build": "webpack --mode production",
"dev": "webpack serve --mode development",
"start": "webpack serve --mode development"
},
"author": "Sreehari S J",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/plugin-transform-runtime": "^7.28.3",
"@babel/preset-env": "^7.23.0",
"@babel/preset-react": "^7.22.0",
"@testing-library/jest-dom": "^6.1.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.0",
"babel-loader": "^9.1.0",
"css-loader": "^6.8.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react-dom": "^18.2.0",
"style-loader": "^3.3.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.0",
"webpack-dev-server": "^4.15.0"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sjsreehari/encypher.git"
}
}