-
Notifications
You must be signed in to change notification settings - Fork 338
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.13 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 3.13 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "h3",
"version": "2.0.1-rc.22",
"description": "Minimal H(TTP) framework built for high performance and portability.",
"homepage": "https://h3.dev",
"license": "MIT",
"repository": "h3js/h3",
"bin": {
"h3": "./bin/h3.mjs"
},
"files": [
"bin",
"dist"
],
"type": "module",
"sideEffects": false,
"types": "./dist/_entries/generic.d.mts",
"exports": {
"./package.json": "./package.json",
".": {
"deno": "./dist/_entries/deno.mjs",
"bun": "./dist/_entries/bun.mjs",
"workerd": "./dist/_entries/cloudflare.mjs",
"browser": "./dist/_entries/service-worker.mjs",
"node": "./dist/_entries/node.mjs",
"default": "./dist/_entries/generic.mjs"
},
"./deno": "./dist/_entries/deno.mjs",
"./bun": "./dist/_entries/bun.mjs",
"./cloudflare": "./dist/_entries/cloudflare.mjs",
"./service-worker": "./dist/_entries/service-worker.mjs",
"./node": "./dist/_entries/node.mjs",
"./generic": "./dist/_entries/generic.mjs",
"./tracing": "./dist/tracing.mjs"
},
"scripts": {
"bench:bun": "bun run ./test/bench/bench.ts",
"bench:node": "node --expose-gc --allow-natives-syntax ./test/bench/bench.ts",
"build": "obuild",
"dev": "vitest",
"lint": "oxlint . && oxfmt --check .",
"fmt": "automd && oxlint --fix . && oxfmt .",
"prepack": "pnpm build",
"play:bun": "bun ./test/fixture/bun.ts",
"play:node": "pnpm test/fixture/node.ts",
"play:plain": "pnpm test/fixture/plain.ts",
"play:web": "pnpm test/fixture/web.ts",
"release": "pnpm test && pnpm build && changelogen --release --prerelease --publish && git push --follow-tags",
"test": "pnpm lint && vitest --run --coverage"
},
"dependencies": {
"rou3": "^0.9.0",
"srvx": "^0.11.20"
},
"devDependencies": {
"@happy-dom/global-registrator": "^20.10.6",
"@mitata/counters": "^0.0.8",
"@types/connect": "^3.4.38",
"@types/express": "^5.0.6",
"@types/node": "^26.1.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@typescript/native-preview": "latest",
"@vitest/coverage-v8": "^4.1.9",
"automd": "^0.4.3",
"changelogen": "^0.6.2",
"connect": "^3.7.0",
"cookie-es": "^3.1.1",
"crossws": "^0.4.8",
"elysia": "^1.4.29",
"esbuild": "^0.28.1",
"express": "^5.2.1",
"fetchdts": "^0.1.7",
"get-port-please": "^3.2.0",
"h3": "workspace:*",
"h3-nightly": "latest",
"happy-dom": "^20.10.6",
"hono": "^4.12.27",
"magic-string": "^0.30.21",
"mdzilla": "^0.2.1",
"memoirist": "^1.1.0",
"mitata": "^1.0.34",
"obuild": "^0.4.37",
"oxc-parser": "^0.138.0",
"oxfmt": "^0.57.0",
"oxlint": "^1.72.0",
"oxlint-tsgolint": "^0.24.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"typescript": "^6.0.3",
"vite": "^8.1.2",
"vitest": "^4.1.9",
"zod": "^4.4.3"
},
"peerDependencies": {
"crossws": "^0.4.8"
},
"peerDependenciesMeta": {
"crossws": {
"optional": true
}
},
"resolutions": {
"h3": "link:.",
"h3-nightly": "latest"
},
"engines": {
"node": ">=20.11.1"
},
"packageManager": "pnpm@11.9.0"
}