-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.06 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.06 KB
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
70
71
72
73
74
75
76
77
78
79
80
{
"name": "react-router-fastify",
"version": "0.13.0",
"description": "Fastify adapter for React Router server builds",
"keywords": [
"fastify",
"react-router",
"react-router-server"
],
"bugs": {
"url": "https://github.com/dendrell/react-router-fastify/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dendrell/react-router-fastify.git"
},
"files": [
"dist/",
"README.md"
],
"type": "module",
"exports": {
".": {
"node": {
"types": "./dist/index.d.mts",
"module-sync": "./dist/index.mjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"./fastify-fetch-plugin": {
"node": {
"types": "./dist/fastify-fetch-plugin.d.mts",
"module-sync": "./dist/fastify-fetch-plugin.mjs"
},
"import": {
"types": "./dist/fastify-fetch-plugin.d.mts",
"default": "./dist/fastify-fetch-plugin.mjs"
}
}
},
"scripts": {
"build": "tsdown && pnpm --filter demo build",
"postbuild": "pnpm dlx publint",
"dev": "pnpm --filter demo dev",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"lint": "pnpm typecheck",
"lint:circular": "pnpm dlx madge --circular src/index.ts src/cli.ts",
"prepublishOnly": "pnpm build",
"prestart": "pnpm build",
"start": "pnpm --filter demo start:cluster",
"test": "vitest --run",
"test:coverage": "vitest --run --coverage",
"typecheck": "tsc && pnpm --filter demo typecheck"
},
"dependencies": {
"@fastify/static": "^9.1.0",
"fastify": "^5.8.4",
"fastify-plugin": "^5.1.0"
},
"devDependencies": {
"@types/node": "^25.5.2",
"@vitest/coverage-v8": "^4.1.3",
"node-cluster-serve": "^0.9.0",
"oxfmt": "^0.44.0",
"publint": "^0.3.18",
"react-router": "^7.14.0",
"tsdown": "^0.21.7",
"typescript": "^6.0.2",
"vitest": "^4.1.3"
},
"peerDependencies": {
"node-cluster-serve": "^0.9.0",
"react-router": "^7"
}
}