-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 955 Bytes
/
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
{
"name": "@emab/maction",
"version": "1.0.1",
"license": "MIT",
"keywords": ["typescript", "redux", "react-redux", "actions", "matcher"],
"repository": "https://github.com/emab/maction",
"tsup": {
"entry": ["src/index.ts"],
"splitting": false,
"sourcemap": true,
"clean": true
},
"scripts": {
"build": "tsup --dts"
},
"main": "dist/index.js",
"type": "module",
"files": ["dist/"],
"types": "dist/index.d.ts",
"dependencies": {},
"devDependencies": {
"@types/react-redux": "^7.1.24",
"@types/redux": "^3.6.0",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.2",
"prettier": "^2.6.2",
"react-redux": "^8.0.1",
"redux": "^4.2.0",
"tsup": "^5.12.8",
"typescript": "^4.6.4"
}
}