-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.35 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
46
47
{
"name": "next-maintenance-mode",
"version": "1.1.0",
"description": "The intuitive cost-efficient middleware for effortless maintenance mode toggling. Supported by multiple configuration options and a straightforward API. Ready to integrate with your Next.js app directory!",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"sideEffects": false,
"license": "MIT",
"author": "Blazity",
"files": [
"dist/**"
],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --external react",
"dev": "tsup src/index.ts --format esm,cjs --watch --dts --external react",
"clean": "rm -rf node_modules && rm -rf dist",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/Blazity/next-maintenance-mode"
},
"keywords": [
"react",
"nextjs",
"vercel",
"redis"
],
"dependencies": {
"@upstash/redis": "^1.22.1",
"@vercel/edge-config": "^0.2.1",
"next": "^13.5.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript-lru-cache": "^2.0.0",
"zod": "^3.22.3"
},
"devDependencies": {
"@total-typescript/ts-reset": "^0.5.1",
"@types/node": "^17.0.45",
"@types/react": "^18.2.24",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"tsup": "^7.2.0",
"typescript": "4.5.5"
}
}