-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 936 Bytes
/
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
{
"name": "nextjs-better-unstable-cache",
"version": "1.1.0",
"description": "Improved version of unstable_cache with deduping and logging",
"keywords": [
"nextjs",
"next",
"cache",
"unstable_cache",
"data cache",
"memoization"
],
"homepage": "https://github.com/alfonsusac/nextjs-better-unstable-cache",
"bugs": {
"url": "https://github.com/alfonsusac/nextjs-better-unstable-cache/issues"
},
"author": {
"name": "alfonsusac",
"url": "https://github.com/alfonsusac"
},
"license": "MIT",
"main": "src/index.js",
"types": "src/index.d.ts",
"files": [
"src/**/*"
],
"type": "module",
"dependencies": {
"chalk": "^4.1.2"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/react": "^18.2.74",
"typescript": "^5.4.4"
},
"scripts": {
"build": "tsc"
},
"peerDependencies": {
"next": ">=13.4",
"react": ">=18.2.0"
}
}