-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.32 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
{
"name": "@osskit/fastify-enforce-headers",
"version": "0.0.6",
"repository": {
"url": "https://github.com/osskit/fastify-enforce-headers"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"license": "MIT",
"scripts": {
"build": "tsc",
"lint:base": "eslint .",
"lint": "yarn lint:base --fix",
"format": "prettier --write '**/*.{ts,js,json,yaml,yml}'",
"prepare": "husky",
"test": "vitest"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"fastify-plugin": "^5.0.1",
"http-errors": "^2.0.0"
},
"peerDependencies": {
"fastify": "^5.0.0"
},
"devDependencies": {
"@osskit/eslint-config": "^2.0.4",
"@osskit/prettier-config": "^0.0.1",
"@osskit/tsconfig": "^0.0.7",
"@types/http-errors": "^2.0.4",
"@types/node": "^22.7.5",
"@vitest/ui": "^2.1.3",
"eslint": "^9.12.0",
"fastify": "^5.0.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"vitest": "^2.1.3"
},
"lint-staged": {
"*.ts": "eslint --fix",
"*.{ts,js,json}": "prettier --write"
},
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}