-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
/
package.json
86 lines (86 loc) · 2.47 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": "redux",
"version": "5.0.1",
"description": "A JS library for predictable and maintainable global state management",
"license": "MIT",
"homepage": "http://redux.js.org",
"repository": "github:reduxjs/redux",
"bugs": "https://github.com/reduxjs/redux/issues",
"keywords": [
"redux",
"reducer",
"state",
"predictable",
"functional",
"immutable",
"hot",
"live",
"replay",
"flux",
"elm"
],
"authors": [
"Dan Abramov <[email protected]> (https://github.com/gaearon)",
"Andrew Clark <[email protected]> (https://github.com/acdlite)"
],
"main": "dist/cjs/redux.cjs",
"module": "dist/redux.legacy-esm.js",
"types": "dist/redux.d.mts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/redux.d.mts",
"import": "./dist/redux.mjs",
"default": "./dist/cjs/redux.cjs"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"clean": "rimraf dist",
"format": "prettier --write \"{src,test}/**/*.{js,ts}\" \"**/*.md\"",
"format:check": "prettier --list-different \"{src,test}/**/*.{js,ts}\" \"**/*.md\"",
"lint": "eslint --ext js,ts src test",
"test": "vitest --run --typecheck",
"type-tests": "tsc -p tsconfig.test.json --noEmit",
"test:watch": "vitest --watch",
"test:cov": "vitest --coverage",
"build": "yarn clean && tsup",
"prepublishOnly": "yarn clean && yarn format:check && yarn lint && yarn test",
"prepack": "yarn build",
"examples:lint": "eslint --ext js,ts examples",
"tsc": "tsc"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@types/babel__core": "^7.20.5",
"@types/babel__helper-module-imports": "^7.18.3",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"cross-env": "^7.0.3",
"esbuild-extra": "^0.3.1",
"eslint": "^8.57.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"glob": "^10.3.10",
"netlify-plugin-cache": "^1.0.3",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"rxjs": "^7.8.1",
"tsup": "8.0.2",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"resolutions": {
"@typescript-eslint/eslint-plugin": "7.3.1",
"@typescript-eslint/parser": "7.3.1"
},
"sideEffects": false,
"packageManager": "[email protected]"
}