123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- {
- "name": "@reduxjs/toolkit",
- "version": "2.0.1",
- "description": "The official, opinionated, batteries-included toolset for efficient Redux development",
- "author": "Mark Erikson <mark@isquaredsoftware.com>",
- "license": "MIT",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/reduxjs/redux-toolkit.git"
- },
- "keywords": [
- "redux",
- "react",
- "starter",
- "toolkit",
- "reducer",
- "slice",
- "immer",
- "immutable",
- "redux-toolkit"
- ],
- "publishConfig": {
- "access": "public"
- },
- "module": "dist/redux-toolkit.legacy-esm.js",
- "main": "dist/cjs/index.js",
- "types": "dist/index.d.ts",
- "exports": {
- "./package.json": "./package.json",
- ".": {
- "types": "./dist/index.d.ts",
- "import": "./dist/redux-toolkit.modern.mjs",
- "default": "./dist/cjs/index.js"
- },
- "./react": {
- "types": "./dist/react/index.d.ts",
- "import": "./dist/react/redux-toolkit-react.modern.mjs",
- "default": "./dist/react/cjs/index.js"
- },
- "./query": {
- "types": "./dist/query/index.d.ts",
- "import": "./dist/query/rtk-query.modern.mjs",
- "default": "./dist/query/cjs/index.js"
- },
- "./query/react": {
- "types": "./dist/query/react/index.d.ts",
- "import": "./dist/query/react/rtk-query-react.modern.mjs",
- "default": "./dist/query/react/cjs/index.js"
- }
- },
- "devDependencies": {
- "@arethetypeswrong/cli": "^0.13.1",
- "@microsoft/api-extractor": "^7.13.2",
- "@phryneas/ts-version": "^1.0.2",
- "@size-limit/preset-small-lib": "^4.11.0",
- "@testing-library/react": "^13.3.0",
- "@testing-library/user-event": "^13.1.5",
- "@types/json-stringify-safe": "^5.0.0",
- "@types/nanoid": "^2.1.0",
- "@types/node": "^10.14.4",
- "@types/query-string": "^6.3.0",
- "@types/react": "^18.0.12",
- "@types/react-dom": "^18.0.5",
- "@types/yargs": "^16.0.1",
- "@typescript-eslint/eslint-plugin": "^6",
- "@typescript-eslint/parser": "^6",
- "axios": "^0.19.2",
- "console-testing-library": "0.6.1",
- "esbuild-extra": "^0.3.1",
- "eslint": "^7.25.0",
- "eslint-config-prettier": "^8.3.0",
- "eslint-config-react-app": "^7.0.1",
- "eslint-plugin-flowtype": "^5.7.2",
- "eslint-plugin-import": "^2.22.1",
- "eslint-plugin-jsx-a11y": "^6.4.1",
- "eslint-plugin-prettier": "^3.4.0",
- "eslint-plugin-react": "^7.23.2",
- "eslint-plugin-react-hooks": "^4.2.0",
- "fs-extra": "^9.1.0",
- "invariant": "^2.2.4",
- "jsdom": "^21.0.0",
- "json-stringify-safe": "^5.0.1",
- "msw": "^0.40.2",
- "node-fetch": "^2.6.1",
- "prettier": "^2.2.1",
- "query-string": "^7.0.1",
- "rimraf": "^3.0.2",
- "size-limit": "^4.11.0",
- "tslib": "^1.10.0",
- "tsup": "^7.2.0",
- "tsx": "^3.12.2",
- "typescript": "5.2",
- "vitest": "^0.30.1",
- "yargs": "^15.3.1"
- },
- "scripts": {
- "run-build": "tsup",
- "build": "yarn rimraf dist && echo Compiling TS... && yarn tsc && yarn run-build",
- "build-only": "yarn rimraf dist && yarn run-build",
- "format": "prettier --write \"(src|examples)/**/*.{ts,tsx}\" \"**/*.md\"",
- "format:check": "prettier --list-different \"(src|examples)/**/*.{ts,tsx}\" \"docs/*/**.md\"",
- "lint": "eslint src examples",
- "test": "vitest",
- "type-tests": "yarn tsc -p src/tests/tsconfig.typetests.json && yarn tsc -p src/query/tests/tsconfig.typetests.json",
- "prepack": "yarn build"
- },
- "files": [
- "dist/",
- "src/",
- "query",
- "react"
- ],
- "dependencies": {
- "immer": "^10.0.3",
- "redux": "^5.0.0",
- "redux-thunk": "^3.1.0",
- "reselect": "^5.0.1"
- },
- "peerDependencies": {
- "react": "^16.9.0 || ^17.0.0 || ^18",
- "react-redux": "^7.2.1 || ^8.1.3 || ^9.0.0"
- },
- "peerDependenciesMeta": {
- "react": {
- "optional": true
- },
- "react-redux": {
- "optional": true
- }
- },
- "sideEffects": false,
- "bugs": {
- "url": "https://github.com/reduxjs/redux-toolkit/issues"
- },
- "homepage": "https://redux-toolkit.js.org"
- }
|