-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.15 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.15 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
{
"name": "better-next-api",
"version": "1.0.1-alpha.8",
"description": "A typesafe and structured way to build Next.js App Router API handlers. Get a tRPC-like developer experience with Zod validation and composable middleware, without leaving your standard API routes.",
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"package.json",
"README.md"
],
"scripts": {
"build": "tsup",
"release": "pnpm release-it"
},
"keywords": [
"nextjs",
"api",
"typescript",
"zod",
"validation",
"middleware",
"typesafe",
"app-router"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/programming-with-ia/better-next-api.git"
},
"bugs": {
"url": "https://github.com/programming-with-ia/better-next-api/issues"
},
"homepage": "https://github.com/programming-with-ia/better-next-api#readme",
"peerDependencies": {
"next": "*",
"zod": "^4"
},
"devDependencies": {
"release-it": "^19.0.5",
"next": "*",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"zod": "^4.1.12"
}
}