-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.74 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
65
66
67
68
69
{
"name": "@vfshera/fastify-dir-routes",
"version": "0.2.3",
"description": "A Fastify plugin that enables file system-based routing, utilizing directories to specify URL segments matched by the router.",
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsup",
"ts:example": "tsx watch ./examples/typescript/server.ts",
"release": "pnpm run build && changeset publish",
"pre-commit": "lint-staged",
"lint": "tsc",
"test": "vitest"
},
"keywords": [
"fastify-dir-routes",
"fastify",
"fastify-routing",
"directory-routing"
],
"author": "Franklin Shera",
"homepage": "https://github.com/vfshera/fastify-dir-routes#readme",
"repository": {
"type": "git",
"url": "https://github.com/vfshera/fastify-dir-routes.git"
},
"bugs": {
"url": "https://github.com/vfshera/fastify-dir-routes/issues"
},
"license": "MIT",
"files": [
"dist"
],
"lint-staged": {
"src/**/*.{js,ts}": "biome check --apply --no-errors-on-unmatched"
},
"devDependencies": {
"@biomejs/biome": "^1.7.3",
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/node": "^20.12.12",
"fastify": "^4.27.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"tsup": "^8.0.2",
"tsx": "^4.10.3",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"peerDependencies": {
"fastify": ">=3.0.0"
},
"dependencies": {
"fastify-plugin": "^4.5.1",
"kleur": "^4.1.5"
}
}