-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
75 lines (75 loc) · 1.65 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
68
69
70
71
72
73
74
75
{
"name": "next-swagger-doc",
"version": "0.4.1",
"keywords": [
"next-swagger",
"next-swagger-doc",
"nextjs",
"swagger",
"swagger-jsdoc"
],
"repository": {
"type": "git",
"url": "https://github.com/jellydn/next-swagger-doc"
},
"license": "MIT",
"author": "Huynh Duc Dung",
"type": "module",
"exports": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"bin": {
"next-swagger-doc-cli": "dist/cli.js"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "pkgroll",
"coverage": "vitest run --coverage",
"format": "biome format src",
"lint": "biome lint src",
"prepare": "pkgroll",
"start": "pkgroll --watch",
"test": "vitest run",
"test:ui": "vitest --ui",
"vercel-build": "npx typedoc src/index.ts"
},
"dependencies": {
"@types/swagger-jsdoc": "6.0.4",
"cleye": "1.3.2",
"isarray": "2.0.5",
"swagger-jsdoc": "6.2.8"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@skypack/package-check": "0.2.2",
"@types/node": "22.9.0",
"@vitest/coverage-v8": "2.1.4",
"@vitest/ui": "2.1.4",
"all-contributors-cli": "6.26.1",
"c8": "10.1.2",
"next": "15.0.3",
"pkgroll": "2.5.1",
"size-limit": "11.1.6",
"sort-package-json": "2.10.1",
"tslib": "2.8.1",
"typedoc": "0.26.11",
"typescript": "5.6.3",
"vite": "5.4.10",
"vitest": "2.1.4"
},
"peerDependencies": {
"next": ">=9"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}