-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.61 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
{
"name": "cached-middleware-fetch-next",
"version": "0.8.2",
"description": "A Next.js fetch wrapper for edge middleware that uses Vercel Runtime Cache as its caching backend",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build",
"type-check": "tsc --noEmit",
"release:patch": "npm version patch && git push origin main --tags",
"release:minor": "npm version minor && git push origin main --tags",
"release:major": "npm version major && git push origin main --tags",
"release:prerelease": "npm version prerelease && git push origin main --tags",
"test": "npm run type-check && npm run build",
"test:package": "npm pack --dry-run"
},
"keywords": [
"nextjs",
"fetch",
"cache",
"middleware",
"edge",
"vercel",
"runtime-cache"
],
"homepage": "https://cached-middleware-fetch-next.dev/",
"bugs": {
"url": "https://github.com/bookernath/cached-middleware-fetch-next/issues"
},
"sideEffects": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bookernath/cached-middleware-fetch-next"
},
"peerDependencies": {
"@vercel/functions": ">=2.2.0",
"next": ">=14.0.0"
},
"devDependencies": {
"@types/node": "^26.0.1",
"@vercel/functions": "^3.1.0",
"next": "^16.1.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}