This repository was archived by the owner on Oct 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "react-ctx-toolkit",
"type": "module",
"private": false,
"version": "1.0.0",
"description": "Helper functions for React Context API inspired by @reduxjs/toolkit",
"repository": "https://github.com/sadeqi-ah/react-ctx-toolkit",
"author": "AmirHossein Sadeqi",
"license": "MIT",
"keywords": [
"react",
"context",
"toolkit"
],
"homePage": "https://github.com/sadeqi-ah/react-ctx-toolkit#readme",
"bugs": {
"url": "https://github.com/sadeqi-ah/react-ctx-toolkit/issues"
},
"scripts": {
"dev": "tsc && vite build --watch",
"build": "tsc && vite build",
"test": "export TS_JEST_DISABLE_VER_CHECKER=true && jest",
"format": "prettier --write \"**/*.{js,ts,tsx,json}\"",
"lint": "eslint ./lib/**/*.{ts,tsx}"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.0.0",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"@vitejs/plugin-react": "^2.1.0",
"eslint": "^8.23.1",
"eslint-plugin-react": "^7.31.8",
"jest": "^29.0.2",
"jest-environment-jsdom": "^29.0.2",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^28.0.8",
"typescript": "^4.6.4",
"vite": "^3.1.0",
"vite-plugin-dts": "^1.4.1"
},
"peerDependencies": {
"react": "^17.x",
"react-dom": "^17.x"
},
"files": [
"dist"
],
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"dependencies": {
"immer": "^9.0.15"
}
}