-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.43 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.43 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
{
"name": "elysia-next-error-handler",
"version": "0.0.3-alpha.0",
"description": "ElysiaJS error handler plugin for Next.js App Router integration",
"type": "module",
"keywords": [
"middleware",
"api-routes",
"elysia",
"nextjs",
"error-handler",
"api",
"middleware",
"plugin",
"app-router",
"next-api",
"elysia",
"elysiajs",
"elysia-plugin",
"elysiajs-eden",
"next-error-handling",
"elysia-next-error-handler"
],
"repository": {
"type": "git",
"url": "git+https://github.com/programming-with-ia/elysia-next-error-handler.git"
},
"homepage": "https://github.com/programming-with-ia/elysia-next-error-handler#readme",
"bugs": {
"url": "https://github.com/programming-with-ia/elysia-next-error-handler/issues"
},
"license": "MIT",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"package.json",
"README.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "tsc --noEmit"
},
"peerDependencies": {
"elysia": ">=1.0.0",
"next": ">=14.0.0"
},
"devDependencies": {
"tsup": "^8.0.0",
"typescript": "^5.0.0",
"@types/node": "^20.0.0"
}
}