-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 1.99 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 1.99 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"version": "2.1.0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "dts watch",
"build": "dts build",
"test": "dts test",
"prepare": "dts build",
"size": "size-limit",
"analyze": "size-limit --why"
},
"husky": {
"hooks": {
"pre-commit": "dts lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "rtk-persist",
"author": "Fancy Pixel S.r.l.",
"module": "dist/rtk-persist.esm.js",
"size-limit": [
{
"path": "dist/rtk-persist.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/rtk-persist.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@babel/core": "^7.28.3",
"@babel/plugin-syntax-flow": "^7.27.1",
"@babel/plugin-transform-react-jsx": "^7.27.1",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.31.0",
"@reduxjs/toolkit": ">=2.1.0",
"@size-limit/preset-small-lib": "^11.2.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@types/node": "^24.3.0",
"@types/react": "^19.1.11",
"@types/react-dom": "^19.1.7",
"dts-cli": "^2.0.5",
"eslint": "^9.31.0",
"eslint-plugin-tsdoc": "^0.4.0",
"globals": "^16.3.0",
"husky": "^9.1.7",
"prettier": "3.6.2",
"react": "^18.0 || ^19",
"react-dom": "^18.0.0 || ^19.0.0",
"react-redux": "^9.2.0",
"size-limit": "^11.2.0",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0"
},
"peerDependencies": {
"@reduxjs/toolkit": ">=2.1.0",
"react": "^18.0 || ^19",
"react-redux": "^9.2.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-redux": {
"optional": true
}
},
"resolutions": {
"@types/minimatch": "5.1.2"
}
}