UNPKG

3.88 kBJSONView Raw
1{
2 "name": "@reduxjs/toolkit",
3 "version": "1.8.2",
4 "description": "The official, opinionated, batteries-included toolset for efficient Redux development",
5 "author": "Mark Erikson <mark@isquaredsoftware.com>",
6 "license": "MIT",
7 "repository": {
8 "type": "git",
9 "url": "git+https://github.com/reduxjs/redux-toolkit.git"
10 },
11 "keywords": [
12 "redux",
13 "react",
14 "starter",
15 "toolkit",
16 "reducer",
17 "slice",
18 "immer",
19 "immutable",
20 "redux-toolkit"
21 ],
22 "publishConfig": {
23 "access": "public"
24 },
25 "main": "dist/index.js",
26 "module": "dist/redux-toolkit.esm.js",
27 "unpkg": "dist/redux-toolkit.umd.min.js",
28 "types": "dist/index.d.ts",
29 "devDependencies": {
30 "@microsoft/api-extractor": "^7.13.2",
31 "@size-limit/preset-small-lib": "^4.11.0",
32 "@testing-library/react": "^11.2.6",
33 "@testing-library/react-hooks": "^5.1.2",
34 "@testing-library/user-event": "^13.1.5",
35 "@types/convert-source-map": "^1.5.1",
36 "@types/jest": "^24.0.11",
37 "@types/json-stringify-safe": "^5.0.0",
38 "@types/nanoid": "^2.1.0",
39 "@types/node": "^10.14.4",
40 "@types/query-string": "^6.3.0",
41 "@types/react": "^17.0.3",
42 "@types/react-dom": "^17.0.3",
43 "@types/react-redux": "^7.1.16",
44 "@types/yargs": "^16.0.1",
45 "@typescript-eslint/eslint-plugin": "^4.22.0",
46 "@typescript-eslint/parser": "^4.22.0",
47 "axios": "^0.19.2",
48 "console-testing-library": "^0.3.1",
49 "convert-source-map": "^1.7.0",
50 "esbuild": "^0.11.13",
51 "eslint": "^7.25.0",
52 "eslint-config-prettier": "^8.3.0",
53 "eslint-config-react-app": "^5.0.1",
54 "eslint-plugin-flowtype": "^5.7.2",
55 "eslint-plugin-import": "^2.22.1",
56 "eslint-plugin-jsx-a11y": "^6.4.1",
57 "eslint-plugin-prettier": "^3.4.0",
58 "eslint-plugin-react": "^7.23.2",
59 "eslint-plugin-react-hooks": "^4.2.0",
60 "fs-extra": "^9.1.0",
61 "invariant": "^2.2.4",
62 "jest": "^26.6.3",
63 "json-stringify-safe": "^5.0.1",
64 "magic-string": "^0.25.7",
65 "merge-source-map": "^1.1.0",
66 "msw": "^0.28.2",
67 "node-fetch": "^2.6.1",
68 "prettier": "^2.2.1",
69 "query-string": "^7.0.1",
70 "rimraf": "^3.0.2",
71 "rollup": "^2.47.0",
72 "rollup-plugin-strip-code": "^0.2.6",
73 "size-limit": "^4.11.0",
74 "source-map": "^0.7.3",
75 "terser": "^5.6.1",
76 "ts-jest": "^26.5.5",
77 "tslib": "^1.10.0",
78 "typescript": "~4.2.4",
79 "yargs": "^15.3.1"
80 },
81 "scripts": {
82 "build-ci": "yarn rimraf dist && yarn tsc && node scripts/cli.js --skipExtraction",
83 "build-prepare": "npm run build-ci",
84 "build": "yarn rimraf dist && yarn tsc && node scripts/cli.js --local --skipExtraction",
85 "build-only": "yarn rimraf dist && yarn tsc && node scripts/cli.js --skipExtraction",
86 "format": "prettier --write \"(src|examples)/**/*.{ts,tsx}\" \"**/*.md\"",
87 "format:check": "prettier --list-different \"(src|examples)/**/*.{ts,tsx}\" \"docs/*/**.md\"",
88 "lint": "eslint src examples",
89 "test": "jest --runInBand",
90 "type-tests": "yarn tsc -p src/tests && yarn tsc -p src/query/tests",
91 "prepack": "npm run build-prepare"
92 },
93 "files": [
94 "dist/**/*.js",
95 "dist/**/*.js.map",
96 "dist/**/*.d.ts",
97 "dist/**/package.json",
98 "src/",
99 "query"
100 ],
101 "dependencies": {
102 "immer": "^9.0.7",
103 "redux": "^4.1.2",
104 "redux-thunk": "^2.4.1",
105 "reselect": "^4.1.5"
106 },
107 "peerDependencies": {
108 "react": "^16.9.0 || ^17.0.0 || ^18",
109 "react-redux": "^7.2.1 || ^8.0.0-beta"
110 },
111 "peerDependenciesMeta": {
112 "react": {
113 "optional": true
114 },
115 "react-redux": {
116 "optional": true
117 }
118 },
119 "sideEffects": false,
120 "bugs": {
121 "url": "https://github.com/reduxjs/redux-toolkit/issues"
122 },
123 "homepage": "https://redux-toolkit.js.org"
124}