UNPKG

nuxt-proxy-request

Version:

A http proxy module for nuxt(3) powered by h3-proxy.

68 lines (67 loc) 1.77 kB
{ "name": "nuxt-proxy-request", "version": "3.0.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.mjs", "typesVersions": { "*": { ".": [ "./dist/types.d.mts" ] } }, "exports": { ".": { "types": "./dist/types.d.mts", "import": "./dist/module.mjs" } }, "files": [ "dist" ], "keywords": [ "nuxt", "nuxt3", "nuxt4", "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": "^4.0.1", "defu": "^6.1.4", "h3-proxy": "^1.13.0" }, "devDependencies": { "@nuxt/eslint-config": "^1.6.0", "@nuxt/module-builder": "^1.0.1", "@nuxt/schema": "^4.0.1", "@nuxt/test-utils": "^3.19.2", "changelogen": "^0.6.2", "cz-conventional-changelog": "^3.3.0", "eslint": "^9.31.0", "eslint-plugin-format": "^1.0.1", "nuxt": "^4.0.1", "prettier": "^3.6.2", "vitest": "^3.2.4" } }