| 1 | {
|
|---|
| 2 | "name": "redux-thunk",
|
|---|
| 3 | "version": "3.1.0",
|
|---|
| 4 | "license": "MIT",
|
|---|
| 5 | "description": "Thunk middleware for Redux.",
|
|---|
| 6 | "repository": "github:reduxjs/redux-thunk",
|
|---|
| 7 | "bugs": "https://github.com/reduxjs/redux-thunk/issues",
|
|---|
| 8 | "homepage": "https://github.com/reduxjs/redux-thunk",
|
|---|
| 9 | "keywords": [
|
|---|
| 10 | "redux",
|
|---|
| 11 | "thunk",
|
|---|
| 12 | "middleware",
|
|---|
| 13 | "redux-middleware",
|
|---|
| 14 | "flux"
|
|---|
| 15 | ],
|
|---|
| 16 | "author": "Dan Abramov <dan.abramov@me.com>",
|
|---|
| 17 | "main": "dist/cjs/redux-thunk.cjs",
|
|---|
| 18 | "module": "dist/redux-thunk.legacy-esm.js",
|
|---|
| 19 | "types": "dist/redux-thunk.d.ts",
|
|---|
| 20 | "exports": {
|
|---|
| 21 | "./package.json": "./package.json",
|
|---|
| 22 | ".": {
|
|---|
| 23 | "types": "./dist/redux-thunk.d.ts",
|
|---|
| 24 | "import": "./dist/redux-thunk.mjs",
|
|---|
| 25 | "default": "./dist/cjs/redux-thunk.cjs"
|
|---|
| 26 | }
|
|---|
| 27 | },
|
|---|
| 28 | "sideEffects": false,
|
|---|
| 29 | "files": [
|
|---|
| 30 | "dist",
|
|---|
| 31 | "src",
|
|---|
| 32 | "extend-redux.d.ts"
|
|---|
| 33 | ],
|
|---|
| 34 | "scripts": {
|
|---|
| 35 | "clean": "rimraf lib dist es",
|
|---|
| 36 | "prepublishOnly": "yarn clean && yarn lint && yarn test && yarn build",
|
|---|
| 37 | "format": "prettier --write \"{src,test,typescript_test}/**/*.{js,ts}\"",
|
|---|
| 38 | "format:check": "prettier --check \"{src,test,typescript_test}/**/*.{js,ts}\"",
|
|---|
| 39 | "lint": "eslint \"{src,test,typescript_test}/**/*.{js,ts}\"",
|
|---|
| 40 | "test": "vitest run",
|
|---|
| 41 | "test:cov": "vitest run --coverage",
|
|---|
| 42 | "test:typescript": "tsc --noEmit -p typescript_test/tsconfig.json",
|
|---|
| 43 | "build": "tsup",
|
|---|
| 44 | "prepack": "yarn build"
|
|---|
| 45 | },
|
|---|
| 46 | "peerDependencies": {
|
|---|
| 47 | "redux": "^5.0.0"
|
|---|
| 48 | },
|
|---|
| 49 | "devDependencies": {
|
|---|
| 50 | "@typescript-eslint/eslint-plugin": "^5.1.0",
|
|---|
| 51 | "@typescript-eslint/parser": "^5.1.0",
|
|---|
| 52 | "cross-env": "^7.0.3",
|
|---|
| 53 | "eslint": "^7.32.0",
|
|---|
| 54 | "eslint-config-prettier": "^8.3.0",
|
|---|
| 55 | "prettier": "^2.4.1",
|
|---|
| 56 | "redux": "^5",
|
|---|
| 57 | "rimraf": "^3.0.2",
|
|---|
| 58 | "tsup": "7.0.0",
|
|---|
| 59 | "typescript": "^5.0",
|
|---|
| 60 | "vitest": "^0.32.0"
|
|---|
| 61 | }
|
|---|
| 62 | }
|
|---|