forked from jellydn/next-swagger-doc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.15 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
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "next-swagger-doc",
"version": "0.3.6",
"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": "prettier --write '{src,test}/**/*.ts'",
"lint": "eslint {src,test}/**/*.ts --fix",
"prepare": "husky install && pkgroll",
"start": "pkgroll --watch",
"test": "vitest run",
"test:ui": "vitest --ui",
"vercel-build": "npx typedoc src/index.ts"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix",
"*.{js,ts,tsx,css,md}": "prettier --write",
"package.json": "sort-package-json"
},
"dependencies": {
"cleye": "1.2.1",
"isarray": "2.0.5",
"swagger-jsdoc": "6.2.5"
},
"devDependencies": {
"@skypack/package-check": "0.2.2",
"@trivago/prettier-plugin-sort-imports": "3.3.0",
"@types/swagger-jsdoc": "6.0.1",
"@typescript-eslint/eslint-plugin": "5.33.0",
"@typescript-eslint/parser": "5.33.0",
"@vitest/ui": "0.21.1",
"all-contributors-cli": "6.20.0",
"c8": "7.12.0",
"eslint": "8.21.0",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.30.1",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"next": "12.2.5",
"pkgroll": "1.4.0",
"prettier": "2.7.1",
"size-limit": "8.0.1",
"sort-package-json": "1.57.0",
"tslib": "2.4.0",
"typedoc": "0.23.10",
"typescript": "4.7.4",
"vite": "3.0.6",
"vitest": "0.21.1"
},
"peerDependencies": {
"next": ">=9"
},
"engines": {
"node": ">=12"
}
}