-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.56 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.56 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
{
"name": "fastify-multiple-swagger",
"version": "2.1.0",
"description": "A Fastify plugin for generating multiple Swagger/OpenAPI documents using @fastify/swagger.",
"type": "commonjs",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "biome check",
"lint:fix": "biome check --write",
"test": "npm run test:unit && npm run test:typescript",
"test:unit": "c8 --100 node --test **/*.test.js",
"test:typescript": "tstyche"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inyourtime/fastify-multiple-swagger.git"
},
"homepage": "https://github.com/inyourtime/fastify-multiple-swagger#readme",
"keywords": [
"fastify",
"swagger",
"openapi",
"documentation",
"plugin"
],
"author": "Sahachai (https://github.com/inyourtime)",
"license": "MIT",
"bugs": {
"url": "https://github.com/inyourtime/fastify-multiple-swagger/issues"
},
"dependencies": {
"@fastify/swagger": "^9.5.1",
"fastify-plugin": "^5.0.1"
},
"devDependencies": {
"@apidevtools/swagger-parser": "^12.0.0",
"@biomejs/biome": "^2.0.5",
"@fastify/basic-auth": "^6.2.0",
"@fastify/swagger-ui": "^5.2.2",
"@inyourtime/shared-configs": "^0.1.1",
"@scalar/fastify-api-reference": "^1.34.6",
"@types/node": "^25.0.2",
"c8": "^11.0.0",
"fastify": "^5.3.2",
"fastify-route-preset": "^1.0.0",
"tstyche": "^7.0.0",
"typescript": "^6.0.2",
"yaml": "^2.8.0"
},
"files": [
"lib",
"index.js",
"index.d.ts"
],
"publishConfig": {
"access": "public"
}
}