-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.69 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.69 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
{
"name": "fastify-openapi-docs",
"version": "5.0.1",
"description": "A simple plugin for Fastify that generates OpenAPI spec automatically.",
"homepage": "https://sw.cowtech.it/fastify-openapi-docs",
"repository": {
"type": "git",
"url": "git+https://github.com/ShogunPanda/fastify-openapi-docs.git"
},
"keywords": [
"fastify",
"fastify-plugin",
"openapi",
"docs"
],
"bugs": {
"url": "https://github.com/ShogunPanda/fastify-openapi-docs/issues"
},
"author": "Shogun <shogun@cowtech.it>",
"license": "ISC",
"private": false,
"files": [
"dist",
"CHANGELOG.md",
"LICENSE.md",
"README.md"
],
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json && npm run lint",
"format": "prettier -w src test",
"lint": "eslint --cache",
"test": "c8 -c test/config/c8-local.json node --test --test-reporter=cleaner-spec-reporter test/*.test.ts",
"ci": "npm run build && npm run test",
"prepublishOnly": "npm run ci",
"postpublish": "git push origin && git push origin -f --tags"
},
"dependencies": {
"@fastify/static": "^8.3.0",
"fastify-plugin": "^5.1.0",
"js-yaml": "^4.1.1",
"swagger-ui-dist": "^5.30.3"
},
"devDependencies": {
"@cowtech/eslint-config": "^11.1.3",
"@cowtech/typescript-config": "^0.2.5",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.10.1",
"@types/swagger-ui-dist": "^3.30.6",
"c8": "^10.1.3",
"cleaner-spec-reporter": "^1.0.3",
"eslint": "^9.39.1",
"fastify": "^5.6.2",
"prettier": "^3.6.2",
"typescript": "^5.9.3"
},
"engines": {
"node": ">= 22.21.0"
}
}