-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.09 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.09 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
{
"name": "@laststance/redux-storage-middleware",
"version": "0.3.2",
"type": "module",
"description": "SSR-safe Redux middleware for LocalStorage persistence with hydration control",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"packageManager": "[email protected]",
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"scripts": {
"build": "tsup",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit && tsc --noEmit -p tests/tsconfig.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky",
"prettier": "prettier --ignore-unknown --write .",
"push-release-commit": "push-release-commit"
},
"keywords": [
"redux",
"middleware",
"localstorage",
"redux-toolkit",
"persistence",
"ssr",
"hydration",
"next.js"
],
"author": "Laststance.io",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/laststance/redux-storage-middleware"
},
"homepage": "https://github.com/laststance/redux-storage-middleware#readme",
"bugs": {
"url": "https://github.com/laststance/redux-storage-middleware/issues"
},
"peerDependencies": {
"@reduxjs/toolkit": "^2.0.0",
"react-redux": "^9.0.0"
},
"optionalDependencies": {
"lz-string": "^1.5.0",
"superjson": "^2.0.0"
},
"devDependencies": {
"@laststance/npm-publish-tool": "^2.1.0",
"@vitest/browser-playwright": "^4.0.16",
"@vitest/coverage-v8": "^4.0.16",
"eslint": "^9.39.2",
"eslint-config-ts-prefixer": "^4.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"playwright": "^1.57.0",
"prettier": "^3.7.4",
"release-it": "^19.2.4",
"tsup": "^8.5.1",
"typescript": "^5.3.0",
"vitest": "^4.0.16"
},
"publishConfig": {
"access": "public"
}
}