-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.01 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
{
"name": "route-handlers-cors",
"version": "1.0.6",
"description": "Middleware that can be used to enable CORS in NextJS Route Handlers.",
"license": "MIT",
"author": "Dawid Urbas",
"keywords": [
"route-handlers-cors",
"express-cors",
"nextjs-cors",
"next-cors",
"cors-server",
"cors"
],
"bugs": {
"url": "https://github.com/mrruby/route-handlers-cors.git"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrruby/route-handlers-cors.git"
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"main"
]
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc"
},
"dependencies": {
"cors": "^2.8.5"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"next": "^13.2.3",
"typescript": "^4.9.5"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
]
}