-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.5 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
{
"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"
},
"devDependencies": {
"@types/connect": "^3.4.38",
"@types/express": "^4.17.21",
"@types/node": "^20.14.15",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitest/coverage-v8": "^2.0.5",
"autocannon": "^7.15.0",
"automd": "^0.3.8",
"changelogen": "^0.5.5",
"connect": "^3.7.0",
"esbuild": "^0.23.0",
"eslint": "^9.9.0",
"eslint-config-unjs": "^0.3.2",
"express": "^4.19.2",
"get-port": "^7.1.0",
"get-port-please": "^3.1.2",
"h3-nightly": "npm:[email protected]",
"h3-v1": "npm:h3@^1.12.0",
"jiti": "2.0.0-beta.3",
"listhen": "^1.7.2",
"mitata": "^0.1.11",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.5.4",
"unbuild": "3.0.0-rc.7",
"vitest": "^2.0.5",
"zod": "^3.23.8"
},
"peerDependencies": {
"crossws": "^0.2.4"
},
"peerDependenciesMeta": {
"crossws": {
"optional": true
}
},
"packageManager": "[email protected]"
}