-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.88 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@qacomet/next-api-middleware",
"version": "0.0.1",
"description": "Provides middleware functionality for Next.js app router API routes",
"author": "Lucas Simon <lucas@qacomet.com> (https://qacomet.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/qacomet/next-api-middleware.git"
},
"bugs": {
"url": "https://github.com/qacomet/next-api-middleware/issues"
},
"homepage": "https://github.com/qacomet/next-api-middleware#readme",
"license": "MIT",
"type": "module",
"exports": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"engines": {
"node": ">=18.17.0"
},
"keywords": [
"next",
"next.js",
"middleware",
"API routes",
"app router"
],
"files": [
"dist",
"LICENSE",
"package.json",
"README.md"
],
"scripts": {
"build": "tsup",
"type-check": "tsc --pretty --noEmit",
"test": "vitest --run",
"version": "npm test && npm build",
"docs": "typedoc",
"prepare": "husky",
"lint": "eslint .",
"format": "prettier --write ."
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@types/node": "^18.17.19",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@vitejs/plugin-react": "^4.3.3",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.8",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"next": "^14.0.0",
"prettier": "^3.4.2",
"tsup": "^6.5.0",
"typedoc": "^0.27.3",
"typedoc-plugin-markdown": "^4.3.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0",
"vite-tsconfig-paths": "^5.1.2",
"vitest": "^2.1.5"
},
"peerDependencies": {
"next": ">=14"
}
}