-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.55 KB
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
{
"name": "react-state-factory",
"version": "0.1.2",
"description": "react minimal typesafe state handling even with saga",
"author": "Peter Vivo <vivo.peter@protonmail.com>",
"license": "MIT",
"main": "dist/react-state-factory.cjs.js",
"module": "dist/react-state-factory.es.js",
"types": "dist/index.d.ts",
"umd:module": "dist/react-state-factory.umd.js",
"repository": {
"type": "git",
"url": "https://github.com/Pengeszikra/react-state-factory"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"typescript",
"react",
"state management",
"useReducer",
"useSagaReducer",
"redux-saga"
],
"scripts": {
"build": "tsc && vite build",
"prepublishOnly": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
},
"peerDependencies": {
"react": ">=16.0.0 <19.0.0",
"redux-saga": "^1.2.3",
"use-saga-reducer": "^3.0.0"
},
"devDependencies": {
"@eslint/create-config": "^0.4.6",
"@types/node": "^20.5.7",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"@vitejs/plugin-react-swc": "^3.3.2",
"eslint": "^8.45.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"react": "^16.0.0",
"redux-saga": "^1.2.3",
"typescript": "^5.0.2",
"use-saga-reducer": "^3.0.0",
"vite": "^4.4.5",
"vite-plugin-dts": "^3.5.3"
}
}