[d24f17c] | 1 | {
|
---|
| 2 | "name": "react-redux",
|
---|
| 3 | "version": "9.1.0",
|
---|
| 4 | "description": "Official React bindings for Redux",
|
---|
| 5 | "keywords": [
|
---|
| 6 | "react",
|
---|
| 7 | "reactjs",
|
---|
| 8 | "redux"
|
---|
| 9 | ],
|
---|
| 10 | "license": "MIT",
|
---|
| 11 | "author": "Dan Abramov <dan.abramov@me.com> (https://github.com/gaearon)",
|
---|
| 12 | "homepage": "https://github.com/reduxjs/react-redux",
|
---|
| 13 | "repository": "github:reduxjs/react-redux",
|
---|
| 14 | "bugs": "https://github.com/reduxjs/react-redux/issues",
|
---|
| 15 | "module": "dist/react-redux.legacy-esm.js",
|
---|
| 16 | "main": "dist/cjs/index.js",
|
---|
| 17 | "react-native": "./dist/react-redux.legacy-esm.js",
|
---|
| 18 | "types": "dist/react-redux.d.ts",
|
---|
| 19 | "exports": {
|
---|
| 20 | "./package.json": "./package.json",
|
---|
| 21 | ".": {
|
---|
| 22 | "types": "./dist/react-redux.d.ts",
|
---|
| 23 | "react-server": "./dist/rsc.mjs",
|
---|
| 24 | "react-native": "./dist/react-redux.legacy-esm.js",
|
---|
| 25 | "import": "./dist/react-redux.mjs",
|
---|
| 26 | "default": "./dist/cjs/index.js"
|
---|
| 27 | },
|
---|
| 28 | "./alternate-renderers": {
|
---|
| 29 | "types": "./dist/react-redux.d.ts",
|
---|
| 30 | "import": "./dist/react-redux.mjs",
|
---|
| 31 | "default": "./dist/cjs/index.js"
|
---|
| 32 | }
|
---|
| 33 | },
|
---|
| 34 | "sideEffects": false,
|
---|
| 35 | "files": [
|
---|
| 36 | "dist"
|
---|
| 37 | ],
|
---|
| 38 | "scripts": {
|
---|
| 39 | "build": "tsup",
|
---|
| 40 | "clean": "rimraf lib dist es coverage",
|
---|
| 41 | "api-types": "api-extractor run --local",
|
---|
| 42 | "format": "prettier --write \"{src,test}/**/*.{js,ts,tsx}\" \"docs/**/*.md\"",
|
---|
| 43 | "lint": "eslint src test",
|
---|
| 44 | "lint:fix": "eslint src test --fix",
|
---|
| 45 | "prepare": "yarn clean && yarn build",
|
---|
| 46 | "pretest": "yarn lint",
|
---|
| 47 | "test": "jest",
|
---|
| 48 | "type-tests": "yarn tsc -p test/typetests/tsconfig.json",
|
---|
| 49 | "coverage": "codecov"
|
---|
| 50 | },
|
---|
| 51 | "peerDependencies": {
|
---|
| 52 | "@types/react": "^18.2.25",
|
---|
| 53 | "react": "^18.0",
|
---|
| 54 | "react-native": ">=0.69",
|
---|
| 55 | "redux": "^5.0.0"
|
---|
| 56 | },
|
---|
| 57 | "peerDependenciesMeta": {
|
---|
| 58 | "@types/react": {
|
---|
| 59 | "optional": true
|
---|
| 60 | },
|
---|
| 61 | "react-native": {
|
---|
| 62 | "optional": true
|
---|
| 63 | },
|
---|
| 64 | "redux": {
|
---|
| 65 | "optional": true
|
---|
| 66 | }
|
---|
| 67 | },
|
---|
| 68 | "dependencies": {
|
---|
| 69 | "@types/use-sync-external-store": "^0.0.3",
|
---|
| 70 | "use-sync-external-store": "^1.0.0"
|
---|
| 71 | },
|
---|
| 72 | "devDependencies": {
|
---|
| 73 | "@babel/cli": "^7.12.1",
|
---|
| 74 | "@babel/core": "^7.12.3",
|
---|
| 75 | "@babel/plugin-proposal-decorators": "^7.12.1",
|
---|
| 76 | "@babel/plugin-proposal-object-rest-spread": "^7.12.1",
|
---|
| 77 | "@babel/plugin-transform-flow-strip-types": "^7.22.5",
|
---|
| 78 | "@babel/plugin-transform-react-display-name": "^7.12.1",
|
---|
| 79 | "@babel/plugin-transform-react-jsx": "^7.12.1",
|
---|
| 80 | "@babel/plugin-transform-runtime": "^7.12.1",
|
---|
| 81 | "@babel/preset-env": "^7.12.1",
|
---|
| 82 | "@babel/preset-typescript": "^7.14.5",
|
---|
| 83 | "@microsoft/api-extractor": "^7.18.1",
|
---|
| 84 | "@reduxjs/toolkit": "^2.0.0-beta.4",
|
---|
| 85 | "@testing-library/jest-dom": "^5.11.5",
|
---|
| 86 | "@testing-library/jest-native": "^3.4.3",
|
---|
| 87 | "@testing-library/react": "13.0.0",
|
---|
| 88 | "@testing-library/react-12": "npm:@testing-library/react@^12",
|
---|
| 89 | "@testing-library/react-hooks": "^3.4.2",
|
---|
| 90 | "@testing-library/react-native": "^7.1.0",
|
---|
| 91 | "@types/react": "18.2.25",
|
---|
| 92 | "@types/react-native": "^0.67.4",
|
---|
| 93 | "@typescript-eslint/eslint-plugin": "^6.17.0",
|
---|
| 94 | "@typescript-eslint/parser": "^6.17.0",
|
---|
| 95 | "babel-eslint": "^10.1.0",
|
---|
| 96 | "babel-jest": "^29",
|
---|
| 97 | "codecov": "^3.8.0",
|
---|
| 98 | "cross-env": "^7.0.2",
|
---|
| 99 | "eslint": "^8.56.0",
|
---|
| 100 | "eslint-config-prettier": "^9.1.0",
|
---|
| 101 | "eslint-plugin-import": "^2.29.1",
|
---|
| 102 | "eslint-plugin-prettier": "^5.1.2",
|
---|
| 103 | "eslint-plugin-react": "^7.33.2",
|
---|
| 104 | "glob": "^7.1.6",
|
---|
| 105 | "jest": "^29",
|
---|
| 106 | "jest-environment-jsdom": "^29.5.0",
|
---|
| 107 | "metro-react-native-babel-preset": "^0.76.6",
|
---|
| 108 | "prettier": "^3.1.1",
|
---|
| 109 | "react": "18.2.0",
|
---|
| 110 | "react-dom": "18.2.0",
|
---|
| 111 | "react-native": "^0.71.11",
|
---|
| 112 | "react-test-renderer": "18.0.0",
|
---|
| 113 | "redux": "^5.0.0",
|
---|
| 114 | "rimraf": "^3.0.2",
|
---|
| 115 | "ts-jest": "^29",
|
---|
| 116 | "tsup": "^7.0.0",
|
---|
| 117 | "typescript": "^5.0"
|
---|
| 118 | }
|
---|
| 119 | }
|
---|