-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (43 loc) · 937 Bytes
/
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
{
"name": "@ohm-vision/next-apiroute",
"version": "1.0.2",
"description": "Wrapper for NextJS App Router API routes",
"author": "Ohm Vision, Inc",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"prepublishOnly": "npm run build"
},
"keywords": [
"next",
"nextjs",
"next.js",
"api",
"routehandler",
"routes",
"approuter"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ohm-vision/next-apiroute.git"
},
"dependencies": {
"yup": "^1.4.0"
},
"peerDependencies": {
"next": "^14 || ^15",
"react": "^18.2.0 || ^19.0.0-0"
},
"devDependencies": {
"next": "14.2.3",
"react": "^18.2.0",
"@types/node": "^22.5.4",
"@types/react": "^18.3.3",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6"
}
}