-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.84 KB
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
{
"name": "@gasket/plugin-swagger",
"version": "7.4.2",
"description": "Generate and serve swagger docs",
"type": "module",
"types": "lib/index.d.ts",
"files": [
"lib",
"cjs",
"EXAMPLES.md"
],
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"require": "./cjs/index.js",
"default": "./cjs/index.js"
},
"./prompts": {
"import": "./lib/prompt.js",
"require": "./cjs/prompt.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "gasket-cjs",
"lint": "eslint .",
"lint:fix": "pnpm run lint --fix",
"posttest": "pnpm run lint && pnpm run typecheck",
"test": "vitest run --globals",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"typecheck": "tsc",
"typecheck:watch": "tsc --watch"
},
"repository": "godaddy/gasket.git",
"publishConfig": {
"access": "public"
},
"keywords": [
"gasket",
"plugin",
"swagger"
],
"author": "GoDaddy Operating Company, LLC",
"license": "MIT",
"bugs": "https://github.com/godaddy/gasket/issues",
"homepage": "https://github.com/godaddy/gasket/tree/main/packages/gasket-plugin-swagger",
"dependencies": {
"@fastify/swagger": "^8.15.0",
"@fastify/swagger-ui": "^4.2.0",
"express": "^4.22.1",
"js-yaml": "^4.2.0",
"swagger-jsdoc": "^4.3.2",
"swagger-ui-express": "^4.6.3"
},
"devDependencies": {
"@gasket/cjs": "workspace:^",
"@gasket/core": "workspace:^",
"@gasket/plugin-command": "workspace:^",
"@gasket/plugin-express": "workspace:^",
"@gasket/plugin-fastify": "workspace:^",
"@gasket/plugin-logger": "workspace:^",
"@gasket/plugin-metadata": "workspace:^",
"create-gasket-app": "workspace:^",
"fastify": "^4.29.1",
"openapi-types": "^12.1.3",
"vitest": "^3.2.0"
}
}