-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.63 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
{
"name": "next-swagger-doc",
"version": "0.4.0",
"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.8.3",
"@skypack/package-check": "0.2.2",
"@types/node": "20.16.0",
"@vitest/coverage-v8": "2.0.5",
"@vitest/ui": "2.0.5",
"all-contributors-cli": "6.26.1",
"c8": "10.1.2",
"next": "14.2.5",
"pkgroll": "2.4.2",
"size-limit": "11.1.4",
"sort-package-json": "2.10.0",
"tslib": "2.6.3",
"typedoc": "0.26.6",
"typescript": "5.5.4",
"vite": "5.4.1",
"vitest": "2.0.5"
},
"peerDependencies": {
"next": ">=9"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}