-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 906 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 906 Bytes
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
{
"name": "convfastify",
"version": "2.0.0",
"author": "DemonHa",
"main": "./build/index.js",
"repository": "https://github.com/DemonHa/convfastify",
"bugs": {
"url": "https://github.com/DemonHa/convfastify/issues"
},
"description": "convfastify is a plugin for the Fastify framework that provides a conventional way of declaring routes",
"license": "MIT",
"files": [
"/build"
],
"scripts": {
"test": "vitest run",
"test:dev": "vitest run",
"build": "rm -rf ./build && tsc"
},
"dependencies": {
"@fastify/swagger": "^8.11.0",
"@fastify/swagger-ui": "^1.10.1",
"fastify-plugin": "^4.5.1",
"glob": "^10.3.10",
"@fastify/type-provider-json-schema-to-ts": "^2.2.2",
"json-schema-to-ts": "^2.9.2"
},
"devDependencies": {
"@types/node": "^20.8.6",
"fastify": "^4.24.3",
"vitest": "^0.34.6",
"typescript": "^5.2.2"
}
}