-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (50 loc) · 1.05 KB
/
package.json
File metadata and controls
51 lines (50 loc) · 1.05 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
{
"name": "@raburski/next-api-inmemory-cache",
"version": "0.1.0",
"description": "In-memory caching middleware for Next.js API routes with TTL support and cache invalidation",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit"
},
"keywords": [
"nextjs",
"middleware",
"api",
"cache",
"typescript",
"in-memory"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/raburski/next-api-inmemory-cache.git"
},
"bugs": {
"url": "https://github.com/raburski/next-api-inmemory-cache/issues"
},
"homepage": "https://github.com/raburski/next-api-inmemory-cache#readme",
"dependencies": {
"@raburski/next-api-middleware": "^0.1.1"
},
"peerDependencies": {
"next": "^14.0.0 || ^15.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
},
"files": [
"dist",
"README.md"
]
}