-
Notifications
You must be signed in to change notification settings - Fork 227
/
package.json
89 lines (89 loc) · 2.52 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "h3",
"version": "2.0.0-beta.0",
"description": "Minimal H(TTP) framework built for high performance and portability.",
"repository": "unjs/h3",
"license": "MIT",
"sideEffects": false,
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"files": [
"dist"
],
"scripts": {
"bench:bun": "bun run ./test/bench",
"bench:node": "node --import jiti/register ./test/bench",
"build": "unbuild",
"dev": "vitest",
"lint": "eslint --cache . && prettier -c src test examples docs",
"lint:fix": "automd && eslint --cache . --fix && prettier -c src test examples docs -w",
"play:bun": "bun ./test/fixture/bun.ts",
"play:node": "node --import jiti/register test/fixture/node.ts",
"play:plain": "node --import jiti/register test/fixture/plain.ts",
"play:web": "node --import jiti/register test/fixture/web.ts",
"release": "pnpm test && pnpm build && changelogen --publish --publishTag 2x --prerelease && git push --follow-tags",
"test": "pnpm lint && pnpm test:types && vitest --run --coverage",
"test:types": "tsc --noEmit --skipLibCheck"
},
"dependencies": {
"cookie-es": "^1.2.2",
"rou3": "^0.5.1",
"uncrypto": "^0.1.3"
},
"resolutions": {
"h3": "link:."
},
"devDependencies": {
"@types/connect": "^3.4.38",
"@types/express": "^5.0.0",
"@types/node": "^22.10.1",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@vitest/coverage-v8": "^2.1.8",
"autocannon": "^8.0.0",
"automd": "^0.3.12",
"changelogen": "^0.5.7",
"connect": "^3.7.0",
"esbuild": "^0.24.0",
"eslint": "^9.16.0",
"eslint-config-unjs": "^0.4.2",
"express": "^4.21.1",
"get-port": "^7.1.0",
"get-port-please": "^3.1.2",
"h3-nightly": "npm:h3-nightly@2x",
"h3-v1": "npm:h3@^1.13.0",
"jiti": "^2.4.1",
"listhen": "^1.9.0",
"mitata": "^1.0.20",
"prettier": "^3.4.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^5.7.2",
"unbuild": "3.0.0-rc.11",
"vitest": "^2.1.8",
"zod": "^3.23.8"
},
"peerDependencies": {
"crossws": "^0.2.4"
},
"peerDependenciesMeta": {
"crossws": {
"optional": true
}
},
"packageManager": "[email protected]"
}