-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.58 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
67
{
"name": "@omer-x/next-openapi-json-generator",
"version": "1.0.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-json-generator.git"
},
"bugs": {
"url": "https://github.com/omermecitoglu/next-openapi-json-generator/issues"
},
"homepage": "https://github.com/omermecitoglu/next-openapi-json-generator#readme",
"private": false,
"publishConfig": {
"access": "public"
},
"author": {
"name": "Omer Mecitoglu",
"email": "[email protected]",
"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",
"dev": "tsup --watch",
"build": "tsup"
},
"dependencies": {
"@omer-x/package-metadata": "^1.0.2",
"minimatch": "^10.0.1",
"typescript": "^5.7.2",
"zod-to-json-schema": "^3.24.1"
},
"devDependencies": {
"@omer-x/eslint-config": "^2.1.2",
"@types/node": "^22.10.2",
"eslint": "^9.16.0",
"semantic-release": "^24.2.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"zod": "^3.24.1"
},
"peerDependencies": {
"@omer-x/next-openapi-route-handler": "^1",
"@omer-x/openapi-types": "^1"
}
}