-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 966 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
37
38
39
{
"name": "@matt-tingen/rtk-producers",
"version": "1.0.0",
"author": "Matt Tingen <[email protected]>",
"license": "MIT",
"sideEffects": false,
"source": "src/index.ts",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"clean": "rm -rf dist",
"build": "microbundle",
"ts": "tsc --noEmit",
"lint": "eslint --ext .ts src",
"prepare": "yarn ts && yarn lint && yarn clean && yarn build"
},
"devDependencies": {
"@matt-tingen/eslint-config": "^0.4.2",
"@reduxjs/toolkit": "^1.6.1",
"eslint": "^8.8.0",
"immer": "^9.0.6",
"microbundle": "^0.14.2",
"prettier": "^2.5.1",
"typescript": "^4.4.3"
},
"peerDependencies": {
"@reduxjs/toolkit": "^1.6.0",
"immer": "^9"
}
}