-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.29 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
37
38
39
40
41
42
43
44
45
{
"name": "use-lru-cache",
"version": "1.1.5",
"description": "Optimize your React applications by effortlessly implementing Least Recently Used (LRU) caching for time-consuming API responses with the React LRUCache Hook. This lightweight and easy-to-use hook seamlessly integrates into your components, allowing you to efficiently manage and cache API data, reducing unnecessary network requests and enhancing the overall performance of your application.",
"keywords": [
"lru cache",
"react hooks",
"useLRUCache",
"use-lru-cache",
"javascript",
"typescript",
"nextjs",
"data structures",
"algorithms",
"hashmap",
"doubly linked list"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"publish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uuvedant4/use-lru-cache.git"
},
"author": "Vedant Yetekar",
"license": "ISC",
"bugs": {
"url": "https://github.com/uuvedant4/use-lru-cache/issues"
},
"homepage": "https://github.com/uuvedant4/use-lru-cache#readme",
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.2.40",
"typescript": "^4.9.4"
},
"files": [
"lib/**/*"
]
}