-
Notifications
You must be signed in to change notification settings - Fork 364
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 3.62 KB
/
Copy pathpackage.json
File metadata and controls
131 lines (131 loc) · 3.62 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "h3",
"version": "2.0.1-rc.32",
"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",
"./rules": "./dist/rules/index.mjs",
"./rules/cache": "./dist/rules/cache.mjs",
"./rules/proxy": "./dist/rules/proxy.mjs",
"./rules/compiler": "./dist/rules/compiler.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",
"fmt": "automd && oxlint --fix . && oxfmt .",
"lint": "oxlint . && oxfmt --check .",
"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 build && pnpm test && changelogen --release --prerelease && pnpm publish --tag latest && git push --follow-tags",
"test": "pnpm lint && pnpm typecheck && vitest --run --coverage",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"rou3": "^0.9.2",
"srvx": "^1.0.5"
},
"devDependencies": {
"@happy-dom/global-registrator": "^20.14.5",
"@mitata/counters": "^0.0.8",
"@types/connect": "^3.4.38",
"@types/express": "^5.0.6",
"@types/node": "^26.5.1",
"@types/react": "^19.3.0",
"@types/react-dom": "^19.3.0",
"@typescript/native-preview": "latest",
"@vitest/coverage-v8": "^5.0.0",
"automd": "^0.4.3",
"changelogen": "^0.6.2",
"connect": "^3.7.0",
"cookie-es": "^3.1.1",
"crossws": "^0.4.12",
"elysia": "^1.4.30",
"esbuild": "^0.28.2",
"express": "^5.2.1",
"fetchdts": "^0.2.0",
"get-port-please": "^3.2.0",
"h3": "workspace:*",
"h3-nightly": "latest",
"happy-dom": "^20.14.5",
"hono": "^4.13.7",
"magic-string": "^1.3.1",
"mdzilla": "^0.2.1",
"memoirist": "^1.2.2",
"mitata": "^1.0.34",
"obuild": "^0.4.40",
"ocache": "^0.3.0",
"oxc-parser": "^0.149.0",
"oxfmt": "^0.67.0",
"oxlint": "^1.82.0",
"pkg-pr-new": "^0.0.88",
"react": "^19.3.0",
"react-dom": "^19.3.0",
"typescript": "^7.0.2",
"vite": "^8.3.0",
"vitest": "^5.0.0",
"zod": "^4.6.4"
},
"peerDependencies": {
"crossws": "^0.4.12",
"ocache": ">=0.3.0"
},
"peerDependenciesMeta": {
"crossws": {
"optional": true
},
"ocache": {
"optional": true
}
},
"resolutions": {
"h3": "link:.",
"h3-nightly": "latest"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "12.3.4",
"onFail": "warn"
},
"runtime": {
"name": "node",
"version": "^24"
}
},
"engines": {
"node": ">=20.11.1"
}
}