-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.09 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
{
"name": "@ryfylke-react/rtk-query-loader",
"version": "1.0.7",
"description": "Lets you create reusable, extendable RTK loaders for React components.",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"scripts": {
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"prepare": "yarn build",
"setup-link": "npm link && cd testing-app && npm link @ryfylke-react/rtk-query-loader"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryfylke-react-as/rtk-query-loader.git"
},
"author": "Ryfylke React AS",
"license": "ISC",
"bugs": {
"url": "https://github.com/ryfylke-react-as/rtk-query-loader/issues"
},
"homepage": "https://rtk-query-loader.ryfylke.dev",
"devDependencies": {
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@reduxjs/toolkit": "^1.6.2",
"react": "^18.2.0",
"tslib": "^2.4.0",
"typescript": "^5.4.5"
},
"peerDependencies": {
"@reduxjs/toolkit": "^1.6.2"
}
}