-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.59 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
{
"name": "@omer-x/next-openapi-route-handler",
"version": "1.5.0",
"description": "a Next.js plugin to generate OpenAPI documentation from route handlers",
"keywords": [
"next.js",
"swagger",
"openapi",
"swagger.json",
"openapi.json",
"generator"
],
"repository": {
"type": "git",
"url": "git+https://github.com/omermecitoglu/next-openapi-route-handler.git"
},
"bugs": {
"url": "https://github.com/omermecitoglu/next-openapi-route-handler/issues"
},
"homepage": "https://github.com/omermecitoglu/next-openapi-route-handler#readme",
"private": false,
"publishConfig": {
"access": "public"
},
"author": {
"name": "Omer Mecitoglu",
"email": "omer.mecitoglu@gmail.com",
"url": "https://omermecitoglu.github.io"
},
"license": "MIT",
"type": "module",
"files": [
"dist/"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"test": "jest",
"prebuild": "ts-unused-exports tsconfig.json --excludePathsFromReport='.config;src/index'",
"build": "tsup",
"dev": "tsup --watch"
},
"dependencies": {
"zod-to-json-schema": "^3.23.5"
},
"devDependencies": {
"@omer-x/eslint-config": "^2.1.2",
"@types/node": "^22.10.1",
"eslint": "^9.16.0",
"semantic-release": "^24.2.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"ts-unused-exports": "^11.0.1",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"peerDependencies": {
"@omer-x/openapi-types": "^1",
"zod": "^3"
}
}