-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.4 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
90
91
92
93
{
"name": "h3-proxy",
"version": "1.13.0",
"description": "A proxy event handler for h3, using proxyRequest.",
"type": "module",
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"exports": {
".": {
"import": "./lib/index.esm.js",
"require": "./lib/index.cjs.js",
"types": "./lib/index.d.ts"
}
},
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"release:nobuild": "changelogen --release && npm publish --access=public && git push --follow-tags",
"release": "npm run build && changelogen --release && npm publish --access=public && git push --follow-tags",
"test:dev": "vitest dev",
"test": "vitest run",
"test:coverage": "pnpm test -- --reporter verbose --coverage",
"start": "node ./playground/main.js",
"start:multi-target-usage": "node ./playground/multi-target-usage.js",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/yisibell/h3-proxy.git"
},
"keywords": [
"h3",
"http-proxy",
"event-handler",
"http",
"proxy",
"proxyRequest",
"middleware",
"nuxt",
"nuxt3",
"nuxt-proxy"
],
"author": {
"name": "elenh",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/yisibell/h3-proxy/issues"
},
"homepage": "https://github.com/yisibell/h3-proxy#readme",
"dependencies": {
"consola": "^3.2.3",
"is-glob": "^4.0.3",
"micromatch": "^4.0.5"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@types/is-glob": "^4.0.4",
"@types/lodash": "^4.14.202",
"@types/micromatch": "^4.0.6",
"@types/supertest": "^6.0.1",
"changelogen": "^0.5.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"h3": "^1.11.1",
"lodash": "^4.17.21",
"prettier": "^3.1.1",
"rollup": "^4.9.1",
"rollup-plugin-dts": "^6.1.0",
"supertest": "^6.3.3",
"tslib": "^2.6.2",
"typescript": "~5.3.3",
"typescript-eslint": "^8.19.0",
"vitest": "^1.1.0"
},
"peerDependencies": {
"h3": "^1.6.0"
},
"engines": {
"node": ">=18.x"
}
}