nuxt-proxy-request
Version:
A http proxy module for nuxt(3) powered by h3-proxy.
63 lines (62 loc) • 1.77 kB
JSON
{
"name": "nuxt-proxy-request",
"version": "2.1.0",
"description": "A http proxy module for nuxt(3) powered by h3-proxy.",
"repository": "yisibell/nuxt-proxy-request",
"license": "MIT",
"type": "module",
"main": "./dist/module.cjs",
"module": "./dist/module.mjs",
"types": "./dist/types.d.ts",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"files": [
"dist"
],
"keywords": [
"nuxt",
"nuxt3",
"http-proxy",
"http-proxy-middleware",
"h3",
"nitro",
"h3-proxy",
"nuxt-module",
"proxyRequest"
],
"homepage": "https://github.com/yisibell/nuxt-proxy-request",
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release": "npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"release:lint:test": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"@nuxt/kit": "^3.15.0",
"defu": "^6.1.4",
"h3-proxy": "^1.13.0"
},
"devDependencies": {
"@nuxt/eslint-config": "^0.7.4",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.15.0",
"@nuxt/test-utils": "^3.15.1",
"changelogen": "^0.5.7",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.17.0",
"eslint-plugin-format": "^0.1.3",
"nuxt": "^3.15.0",
"prettier": "^3.4.2",
"vitest": "^2.1.8"
}
}