-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.61 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@autotelic/fastify-openapi-autoload",
"version": "0.2.0",
"description": "Plugin for fastify",
"main": "index.js",
"types": "types/index.d.ts",
"type": "module",
"files": [
"index.js",
"types/index.d.ts",
"jwtJwks.js",
"lib/jwtJwks.js",
"types/jwtJwks.d.ts"
],
"engines": {
"node": ">=18"
},
"scripts": {
"lint": "eslint .",
"test": "tap",
"test:types": "tsd",
"validate": "npm run lint && npm run test && npm run test:types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/autotelic/fastify-openapi-autoload.git"
},
"keywords": [],
"author": "Autotelic Development Ltd <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/autotelic/fastify-openapi-autoload/issues"
},
"homepage": "https://github.com/autotelic/fastify-openapi-autoload#readme",
"dependencies": {
"@fastify/autoload": "^5.8.0",
"fastify-openapi-glue": "^4.4.3",
"fastify-plugin": "^4.5.1",
"json-refs": "^3.0.15",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@autotelic/eslint-config-js": "^0.3.0",
"@autotelic/fastify-injector": "^0.3.0",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.56.0",
"eslint-import-resolver-typescript": "^3.6.1",
"fast-jwt": "^4.0.0",
"fastify": "^4.25.2",
"jose": "^5.2.0",
"nock": "^13.5.0",
"tap": "^18.6.1",
"tsd": "^0.30.3",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@fastify/jwt": "^8.0.0",
"get-jwks": "^9.0.0"
},
"tsd": {
"directory": "types"
}
}