-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 788 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 788 Bytes
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
{
"name": "use-deep",
"version": "1.2.0",
"type": "module",
"description": "use-deep is a React hook library that provides deep-equality versions of useEffect, useCallback, and useMemo, ensuring more accurate dependency comparison for complex data structures.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "git@github.com:Aystein/use-deep.git",
"author": "Moritz Heckmann",
"license": "MIT",
"private": false,
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "vite build"
},
"devDependencies": {
"@types/react": "^18.3.12",
"@vitejs/plugin-react-swc": "^3.7.1",
"fast-deep-equal": "^3.1.3",
"react": "^18.3.1",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-plugin-dts": "^4.3.0"
}
}