forked from unjs/h3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.46 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
{
"name": "h3",
"version": "0.7.4",
"description": "Tiny JavaScript Server",
"repository": "unjs/h3",
"license": "MIT",
"sideEffects": false,
"exports": {
".": {
"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 --ext ts,mjs,cjs .",
"play": "jiti ./playground/index.ts",
"profile": "0x -o -D .profile -P 'autocannon -c 100 -p 10 -d 40 http://localhost:$PORT' ./playground/server.cjs",
"release": "pnpm lint && pnpm test && pnpm build && standard-version && pnpm publish && git push --follow-tags",
"test": "vitest run"
},
"dependencies": {
"cookie-es": "^0.5.0",
"destr": "^1.1.1",
"radix3": "^0.1.1",
"ufo": "^0.8.3"
},
"devDependencies": {
"0x": "latest",
"@nuxtjs/eslint-config-typescript": "latest",
"@types/cookie": "latest",
"@types/express": "latest",
"@types/node": "latest",
"@types/supertest": "latest",
"autocannon": "latest",
"c8": "latest",
"connect": "latest",
"eslint": "latest",
"express": "latest",
"get-port": "^5.1.1",
"jiti": "latest",
"listhen": "latest",
"standard-version": "latest",
"supertest": "latest",
"typescript": "latest",
"unbuild": "latest",
"vitest": "latest"
},
"packageManager": "pnpm@6.32.7"
}