-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.35 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "react-hook-webstorage",
"version": "0.0.3",
"description": "React hooks using WebStorage API like LocalStorage and SessionStorage",
"license": "MIT",
"author": "Norman Rusch",
"bugs": {
"url": "https://github.com/schorfES/react-hook-webstorage/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/schorfES/react-hook-webstorage.git"
},
"homepage": "https://github.com/schorfES/react-hook-webstorage#readme",
"keywords": [
"react",
"hook",
"hooks",
"storage",
"localstorage",
"sessionstorage",
"webstorage",
"typescript",
"server-side-rendering"
],
"main": "dist/formats/index.cjs.js",
"module": "dist/esm/index.esm.mjs",
"umd:main": "dist/formats/umd/index.umd.js",
"unpkg": "dist/formats/umd/index.umd.js",
"jsdelivr": "dist/formats/umd/index.umd.js",
"jsnext:main": "dist/esm/index.esm.mjs",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/index.esm.mjs",
"require": "./dist/formats/index.cjs.js"
}
},
"scripts": {
"validate": "make validate",
"test": "make tests",
"release": "make release"
},
"dependencies": {
"exenv": "^1.2.2"
},
"devDependencies": {
"@jest/types": "^29.6.3",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-multi-entry": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^16.0.1",
"@types/exenv": "^1.2.2",
"@types/jest": "^29.5.10",
"@types/react": "^18.2.38",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"eslint": "^8.56.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-react-hooks": "^5.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.5",
"react": "^18.3.1",
"release-it": "^17.1.1",
"rollup": "^4.12.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-esbuild": "^6.1.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
},
"peerDependencies": {
"react": ">=18"
}
}