generated from Eomm/fastify-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
50 lines (50 loc) · 1.43 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
{
"name": "fastify-overview",
"version": "4.0.0",
"description": "Get a complete overview of your fastify application",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "standard && npm run lint:typescript",
"lint:fix": "standard --fix && npm run lint:typescript -- --fix",
"lint:typescript": "standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin *.ts test/**/*.ts",
"test": "node --test && npm run test:typescript",
"test:typescript": "tsd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Eomm/fastify-overview.git"
},
"keywords": [
"fastify",
"application-schema",
"overview",
"draw"
],
"author": "Manuel Spigolon <[email protected]> (https://github.com/Eomm)",
"funding": "https://github.com/Eomm/fastify-overview?sponsor=1",
"license": "MIT",
"bugs": {
"url": "https://github.com/Eomm/fastify-overview/issues"
},
"engines": {
"node": ">=20"
},
"homepage": "https://github.com/Eomm/fastify-overview#readme",
"devDependencies": {
"@fastify/autoload": "^6.0.2",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"fastify": "^5.1.0",
"standard": "^17.1.2",
"tsd": "^0.31.2"
},
"dependencies": {
"fastify-plugin": "^5.0.1",
"object-hash": "^3.0.0"
},
"tsd": {
"directory": "test/types"
}
}