-
Notifications
You must be signed in to change notification settings - Fork 1k
/
package.json
66 lines (66 loc) · 1.89 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "redux-thunk",
"version": "3.1.0",
"license": "MIT",
"description": "Thunk middleware for Redux.",
"repository": "github:reduxjs/redux-thunk",
"bugs": "https://github.com/reduxjs/redux-thunk/issues",
"homepage": "https://github.com/reduxjs/redux-thunk",
"keywords": [
"redux",
"thunk",
"middleware",
"redux-middleware",
"flux"
],
"author": "Dan Abramov <[email protected]>",
"main": "dist/cjs/redux-thunk.cjs",
"module": "dist/redux-thunk.legacy-esm.js",
"types": "dist/redux-thunk.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/redux-thunk.d.ts",
"import": "./dist/redux-thunk.mjs",
"default": "./dist/cjs/redux-thunk.cjs"
}
},
"sideEffects": false,
"files": [
"dist",
"src",
"extend-redux.d.ts"
],
"scripts": {
"clean": "rimraf lib dist es",
"prepublishOnly": "yarn clean && yarn lint && yarn test && yarn build",
"format": "prettier --write \"{src,test,typescript_test}/**/*.{js,ts}\"",
"format:check": "prettier --check \"{src,test,typescript_test}/**/*.{js,ts}\"",
"lint": "eslint \"{src,test,typescript_test}/**/*.{js,ts}\"",
"test": "vitest --run --typecheck",
"test:watch": "vitest --watch",
"test:cov": "vitest --run --coverage",
"type-tests": "tsc --noEmit -p tsconfig.test.json",
"build": "yarn clean && tsup",
"prepack": "yarn build"
},
"peerDependencies": {
"redux": "^5.0.0"
},
"devDependencies": {
"@types/node": "^22.7.5",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^3.3.3",
"redux": "^5",
"rimraf": "^3.0.2",
"tsup": "7.0.0",
"tsx": "^4.19.1",
"typescript": "^5.5.4",
"vitest": "^1.6.0"
},
"packageManager": "[email protected]"
}