This repository has been archived by the owner on Mar 11, 2024. It is now read-only.
generated from fastify/skeleton
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.39 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
{
"name": "@kitajs/fastify-html-plugin",
"version": "1.0.0",
"description": "A Fastify plugin to add support for @kitajs/html",
"homepage": "https://github.com/kitajs/fastify-html-plugin#readme",
"bugs": {
"url": "https://github.com/kitajs/fastify-html-plugin/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kitajs/fastify-html-plugin.git"
},
"license": "MIT",
"author": "Arthur Fiorette <[email protected]>",
"type": "commonjs",
"main": "index.js",
"types": "types/index.d.ts",
"scripts": {
"format": "biome format --write .",
"lint": "biome check .",
"lint:ci": "biome ci .",
"lint:fix": "biome check --apply-unsafe .",
"test": "tsd && c8 --reporter lcov --reporter text node -r @swc-node/register --test test/**/*.test.tsx",
"test:watch": "c8 --reporter lcov --reporter text node -r @swc-node/register --test --watch test/**/*.test.tsx"
},
"dependencies": {
"fastify-plugin": "^4.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.5.2",
"@fastify/formbody": "^7.4.0",
"@swc-node/register": "^1.6.8",
"@swc/helpers": "^0.5.3",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.11.5",
"c8": "^9.1.0",
"fastify": "^4.0.0-rc.2",
"jsdom": "^24.0.0",
"tsd": "^0.30.4",
"tslib": "^2.6.2"
},
"peerDependencies": {
"@kitajs/html": ">=3.1"
},
"packageManager": "[email protected]"
}