-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
114 lines (114 loc) · 2.8 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@logux/redux",
"version": "0.8.4",
"description": "Redux compatible API for Logux",
"keywords": [
"logux",
"client",
"redux",
"websocket"
],
"scripts": {
"unit": "tsm node_modules/uvu/bin.js . '\\.test\\.(ts|js)$'",
"test:coverage": "c8 pnpm unit",
"test:lint": "eslint .",
"test:types": "check-dts",
"test:size": "size-limit",
"test": "pnpm run /^test:/"
},
"author": "Andrey Sitnik <[email protected]>",
"license": "MIT",
"homepage": "https://logux.org/",
"repository": "logux/redux",
"sideEffects": false,
"type": "module",
"types": "./index.d.ts",
"exports": {
".": "./index.js",
"./package.json": "./package.json"
},
"engines": {
"node": "^18.0.0 || ^20.0.0 || >=22.0.0"
},
"peerDependencies": {
"@logux/client": ">=0.10.0",
"@logux/core": ">=0.7.0",
"react": ">=16.8.4",
"react-redux": ">=6.0.0",
"redux": ">=4.0.0"
},
"dependencies": {
"nanoevents": "^7.0.1"
},
"devDependencies": {
"@logux/actions": "^0.3.1",
"@logux/client": "^0.18.4",
"@logux/core": "^0.8.4",
"@logux/eslint-config": "^49.0.0",
"@size-limit/preset-small-lib": "^8.2.6",
"@types/node": "^18.17.2",
"@types/react": "^18.2.18",
"@types/react-redux": "^7.1.25",
"@types/react-test-renderer": "^18.0.0",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"c8": "^7.14.0",
"check-dts": "^0.7.2",
"clean-publish": "^4.2.0",
"eslint": "^8.46.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prefer-let": "^3.0.1",
"eslint-plugin-promise": "^6.1.1",
"nanodelay": "^2.0.2",
"nanospy": "^0.5.0",
"nanostores": "^0.6.0",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.1.2",
"react-test-renderer": "^18.2.0",
"redux": "^4.2.1",
"size-limit": "^8.2.6",
"tsm": "^2.3.0",
"typescript": "^5.1.6",
"uvu": "^0.5.6"
},
"prettier": {
"arrowParens": "avoid",
"jsxSingleQuote": false,
"quoteProps": "consistent",
"semi": false,
"singleQuote": true,
"trailingComma": "none"
},
"c8": {
"exclude": [
"**/*.test.*"
],
"lines": 100,
"check-coverage": true
},
"eslintConfig": {
"extends": "@logux/eslint-config/esm",
"rules": {
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-explicit-any": "off",
"no-console": "off"
}
},
"eslintIgnore": [
"**/errors.ts"
],
"size-limit": [
{
"import": {
"@logux/client": "{ CrossTabClient }",
"./index.js": "{ createStoreCreator, useSubscription, useDispatch }"
},
"limit": "6 KB"
}
]
}