|
1 | 1 | {
|
2 | 2 | "name": "react-redux",
|
3 |
| - "version": "9.1.0", |
| 3 | + "version": "9.1.2", |
4 | 4 | "description": "Official React bindings for Redux",
|
5 | 5 | "keywords": [
|
6 | 6 | "react",
|
|
36 | 36 | "dist"
|
37 | 37 | ],
|
38 | 38 | "scripts": {
|
39 |
| - "build": "tsup", |
| 39 | + "build": "yarn clean && tsup", |
40 | 40 | "clean": "rimraf lib dist es coverage",
|
41 | 41 | "api-types": "api-extractor run --local",
|
42 | 42 | "format": "prettier --write \"{src,test}/**/*.{js,ts,tsx}\" \"docs/**/*.md\"",
|
43 | 43 | "lint": "eslint src test",
|
44 | 44 | "lint:fix": "eslint src test --fix",
|
45 | 45 | "prepare": "yarn clean && yarn build",
|
46 | 46 | "pretest": "yarn lint",
|
47 |
| - "test": "vitest --run", |
| 47 | + "test": "vitest --run --typecheck", |
48 | 48 | "test:watch": "vitest --watch",
|
49 |
| - "type-tests": "yarn tsc -p test/typetests/tsconfig.json", |
| 49 | + "type-tests": "tsc --noEmit -p tsconfig.test.json", |
50 | 50 | "coverage": "codecov"
|
51 | 51 | },
|
52 | 52 | "peerDependencies": {
|
53 | 53 | "@types/react": "^18.2.25",
|
54 | 54 | "react": "^18.0",
|
55 |
| - "react-native": ">=0.69", |
56 | 55 | "redux": "^5.0.0"
|
57 | 56 | },
|
58 | 57 | "peerDependenciesMeta": {
|
59 | 58 | "@types/react": {
|
60 | 59 | "optional": true
|
61 | 60 | },
|
62 |
| - "react-native": { |
63 |
| - "optional": true |
64 |
| - }, |
65 | 61 | "redux": {
|
66 | 62 | "optional": true
|
67 | 63 | }
|
68 | 64 | },
|
69 | 65 | "dependencies": {
|
70 |
| - "@types/use-sync-external-store": "^0.0.3", |
71 |
| - "use-sync-external-store": "^1.0.0" |
| 66 | + "@types/use-sync-external-store": "^0.0.6", |
| 67 | + "use-sync-external-store": "^1.2.2" |
72 | 68 | },
|
73 | 69 | "devDependencies": {
|
74 |
| - "@babel/cli": "^7.12.1", |
75 |
| - "@babel/core": "^7.12.3", |
76 |
| - "@babel/plugin-proposal-decorators": "^7.12.1", |
77 |
| - "@babel/plugin-proposal-object-rest-spread": "^7.12.1", |
78 |
| - "@babel/plugin-transform-flow-strip-types": "^7.22.5", |
79 |
| - "@babel/plugin-transform-react-display-name": "^7.12.1", |
80 |
| - "@babel/plugin-transform-react-jsx": "^7.12.1", |
81 |
| - "@babel/plugin-transform-runtime": "^7.12.1", |
82 |
| - "@babel/preset-env": "^7.12.1", |
83 |
| - "@babel/preset-typescript": "^7.14.5", |
84 |
| - "@microsoft/api-extractor": "^7.18.1", |
85 |
| - "@reduxjs/toolkit": "^2.0.0-beta.4", |
86 |
| - "@testing-library/jest-dom": "^6.3.0", |
87 |
| - "@testing-library/react": "^14.1.2", |
88 |
| - "@testing-library/react-hooks": "^8.0.1", |
89 |
| - "@types/node": "^20.11.6", |
90 |
| - "@types/react": "18.2.25", |
91 |
| - "@typescript-eslint/eslint-plugin": "^6.17.0", |
92 |
| - "@typescript-eslint/parser": "^6.17.0", |
| 70 | + "@babel/cli": "^7.24.7", |
| 71 | + "@babel/core": "^7.24.7", |
| 72 | + "@babel/plugin-proposal-decorators": "^7.24.7", |
| 73 | + "@babel/plugin-proposal-object-rest-spread": "^7.20.7", |
| 74 | + "@babel/plugin-transform-flow-strip-types": "^7.24.7", |
| 75 | + "@babel/plugin-transform-react-display-name": "^7.24.7", |
| 76 | + "@babel/plugin-transform-react-jsx": "^7.24.7", |
| 77 | + "@babel/plugin-transform-runtime": "^7.24.7", |
| 78 | + "@babel/preset-env": "^7.24.7", |
| 79 | + "@babel/preset-typescript": "^7.24.7", |
| 80 | + "@microsoft/api-extractor": "^7.47.0", |
| 81 | + "@reduxjs/toolkit": "^2.2.5", |
| 82 | + "@testing-library/dom": "^10.1.0", |
| 83 | + "@testing-library/jest-dom": "^6.4.5", |
| 84 | + "@testing-library/react": "^16.0.0", |
| 85 | + "@types/node": "^20.14.2", |
| 86 | + "@types/prop-types": "^15.7.12", |
| 87 | + "@types/react": "18.3.3", |
| 88 | + "@types/react-dom": "^18.3.0", |
93 | 89 | "babel-eslint": "^10.1.0",
|
94 |
| - "codecov": "^3.8.0", |
95 |
| - "cross-env": "^7.0.2", |
96 |
| - "eslint": "^8.56.0", |
| 90 | + "codecov": "^3.8.3", |
| 91 | + "cross-env": "^7.0.3", |
| 92 | + "eslint": "^8.57.0", |
97 | 93 | "eslint-config-prettier": "^9.1.0",
|
| 94 | + "eslint-import-resolver-typescript": "^3.6.1", |
98 | 95 | "eslint-plugin-import": "^2.29.1",
|
99 |
| - "eslint-plugin-prettier": "^5.1.2", |
100 |
| - "eslint-plugin-react": "^7.33.2", |
101 |
| - "glob": "^7.1.6", |
102 |
| - "jsdom": "^24.0.0", |
103 |
| - "prettier": "^3.2.5", |
104 |
| - "react": "18.2.0", |
105 |
| - "react-dom": "18.2.0", |
106 |
| - "react-test-renderer": "18.0.0", |
107 |
| - "redux": "^5.0.0", |
108 |
| - "rimraf": "^3.0.2", |
109 |
| - "tsup": "^7.0.0", |
110 |
| - "typescript": "^5.4.2", |
111 |
| - "vitest": "^1.2.1" |
| 96 | + "eslint-plugin-prettier": "^5.1.3", |
| 97 | + "eslint-plugin-react": "^7.34.2", |
| 98 | + "jsdom": "^24.1.0", |
| 99 | + "prettier": "^3.3.1", |
| 100 | + "react": "18.3.1", |
| 101 | + "react-dom": "18.3.1", |
| 102 | + "react-test-renderer": "18.3.1", |
| 103 | + "redux": "^5.0.1", |
| 104 | + "rimraf": "^5.0.7", |
| 105 | + "tsup": "7.0.0", |
| 106 | + "typescript": "^5.4.5", |
| 107 | + "typescript-eslint": "^7.12.0", |
| 108 | + "vitest": "^1.6.0" |
112 | 109 | },
|
113 | 110 | "packageManager": "[email protected]"
|
114 | 111 | }
|
0 commit comments