-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.13 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
{
"name": "h3",
"version": "1.10.1",
"description": "Minimal H(TTP) framework built for high performance and portability.",
"repository": "unjs/h3",
"license": "MIT",
"sideEffects": false,
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "vitest",
"lint": "eslint --cache --ext .ts,.js,.mjs,.cjs . && prettier -c src test playground examples",
"lint:fix": "eslint --cache --ext .ts,.js,.mjs,.cjs . --fix && prettier -c src test playground examples -w",
"play": "listhen -w ./playground/app.ts",
"profile": "0x -o -D .profile -P 'autocannon -c 100 -p 10 -d 40 http://localhost:$PORT' ./playground/server.cjs",
"release": "pnpm test && pnpm build && changelogen --release && pnpm publish && git push --follow-tags",
"release-rc": "pnpm test && pnpm build && changelogen --release --prerelease rc --push --publish --publishTag rc",
"test": "pnpm lint && vitest --run --coverage"
},
"dependencies": {
"cookie-es": "^1.0.0",
"defu": "^6.1.4",
"destr": "^2.0.2",
"iron-webcrypto": "^1.0.0",
"ohash": "^1.1.3",
"radix3": "^1.1.0",
"ufo": "^1.3.2",
"uncrypto": "^0.1.3",
"unenv": "^1.9.0"
},
"devDependencies": {
"0x": "^5.7.0",
"@types/express": "^4.17.21",
"@types/node": "^20.11.6",
"@types/supertest": "^6.0.2",
"@vitest/coverage-v8": "^1.2.1",
"autocannon": "^7.14.0",
"changelogen": "^0.5.5",
"connect": "^3.7.0",
"eslint": "^8.56.0",
"eslint-config-unjs": "^0.2.1",
"express": "^4.18.2",
"get-port": "^7.0.0",
"jiti": "^1.21.0",
"listhen": "^1.5.6",
"node-fetch-native": "^1.6.1",
"prettier": "^3.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"supertest": "^6.3.4",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
"vitest": "^1.2.1",
"zod": "^3.22.4"
},
"packageManager": "[email protected]"
}