-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
64 lines (64 loc) · 1.76 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
{
"name": "srvx",
"version": "0.1.3",
"description": "Universal Server API based on web platform standards. Works seamlessly with Deno, Bun and Node.js.",
"repository": "unjs/srvx",
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.mts",
"bun": "./dist/bun.mjs",
"deno": "./dist/deno.mjs",
"node": "./dist/node.mjs"
},
"./node-utils": {
"types": "./dist/node-utils/index.d.mts",
"import": "./dist/node-utils/index.mjs"
},
"./types": {
"types": "./dist/types.d.mts",
"import": "./dist/types.mjs"
}
},
"types": "./dist/types.d.mts",
"files": [
"dist"
],
"scripts": {
"bench:node": "node test/bench-node/_run.mjs",
"build": "unbuild",
"dev": "vitest dev",
"lint": "eslint . && prettier -c .",
"lint:fix": "automd && eslint . --fix && prettier -w .",
"prepack": "pnpm build",
"release": "pnpm test && changelogen --release && npm publish && git push --follow-tags",
"test": "pnpm lint && pnpm test:types && vitest run --coverage",
"test:types": "tsc --noEmit --skipLibCheck"
},
"dependencies": {
"cookie-es": "^1.2.2"
},
"devDependencies": {
"@hono/node-server": "^1.13.7",
"@mjackson/node-fetch-server": "^0.5.0",
"@types/bun": "^1.1.14",
"@types/deno": "^2.0.0",
"@types/node": "^22.10.3",
"@vitest/coverage-v8": "^2.1.8",
"automd": "^0.3.12",
"changelogen": "^0.5.7",
"eslint": "^9.17.0",
"eslint-config-unjs": "^0.4.2",
"execa": "^9.5.2",
"get-port-please": "^3.1.2",
"jiti": "^2.4.2",
"prettier": "^3.4.2",
"srvx": "^0.1.3",
"typescript": "^5.7.2",
"unbuild": "^2.0.0",
"vitest": "^2.1.8"
},
"packageManager": "[email protected]"
}