-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.15 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
{
"name": "@foodsy-app/fastify-typebox",
"version": "5.3.0",
"description": "Plugin for Fastify to prevent having to write duplicate type definitions for schemas",
"keywords": [
"fastify",
"typebox",
"json-schema",
"fastify-plugin"
],
"homepage": "https://github.com/foodsy-app/fastify-typebox#readme",
"bugs": {
"url": "https://github.com/foodsy-app/fastify-typebox/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/foodsy-app/fastify-typebox.git"
},
"license": "MIT",
"author": "foodsy-app <[email protected]>",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "tsc -p test/tsconfig.json",
"clean": "rimraf index.js index.d.ts",
"prepublishOnly": "npm run clean && npm run build",
"postinstall": "npx patch-package --patch-dir ."
},
"dependencies": {
"@sinclair/typebox": "^0.16.0",
"fastify-plugin": "^3.0.0",
"rimraf": "^3.0.2"
},
"devDependencies": {
"@types/node": "^14.14.35",
"fastify": "^3.14.0",
"patch-package": "^6.4.7",
"typescript": "^4.2.3"
},
"engines": {
"node": ">=5"
}
}