UNPKG

env-manage-plugin

Version:

A dev env plugin that integrates an Express server with request proxying capabilities.

83 lines (82 loc) 2.22 kB
{ "name": "env-manage-plugin", "version": "0.4.9", "description": "A dev env plugin that integrates an Express server with request proxying capabilities.", "keywords": [ "proxy", "devServer", "Development environment management", "webpack-plugin", "rollup-plugin", "vite-plugin" ], "workspaces": [ "client" ], "bin": { "envm": "bin/index.js" }, "main": "./dist/Plugin.js", "types": "./dist/types.d.ts", "exports": { ".": { "import": "./dist/Plugin.js", "types": "./dist/types.d.ts" } }, "scripts": { "dev": "concurrently --prefix \"[{name}]\" --prefix-colors \"auto\" \"npm run dev:*\" ", "dev:ts": "tsc --watch", "dev:proxy": "nodemon bin/index.js --config=./test/envm.config.js", "dev:client": "cd client && npm run dev", "dev:server": "node test/server.js", "build": "tsc & tsc -p tsconfig.types.json", "postbuild": "npm --prefix client run build", "test": "concurrently --prefix \"[{name}]\" --prefix-colors \"auto\" \"npm run test:*\" ", "test:envm": "npx envm --config=./test/envm.config.js", "test:client": "npm run dev:client", "test:server": "npm run dev:server" }, "author": "lcn", "license": "MIT", "dependencies": { "chokidar": "^4.0.3", "commander": "^13.1.0", "cookie": "^1.0.2", "express": "^4.21.2", "express-static-gzip": "^2.2.0", "http-proxy-middleware": "^3.0.3", "portfinder": "^1.0.35", "set-cookie-parser": "^2.7.1", "tslib": "^2.8.1", "unplugin": "^2.2.0", "ws": "^8.18.1" }, "devDependencies": { "@types/express": "^5.0.0", "@types/node": "^22.13.8", "@types/set-cookie-parser": "^2.4.10", "@types/ws": "^8.18.0", "concurrently": "^8.2.2", "nodemon": "^3.1.9", "typescript": "^5.8.2" }, "bugs": { "url": "https://github.com/helloskynet/env-manage-plugin/issues" }, "homepage": "https://github.com/helloskynet/env-manage-plugin#readme", "repository": { "type": "git", "url": "https://github.com/helloskynet/env-manage-plugin.git" }, "engines": { "node": ">=14.0.0" }, "files": [ "bin", "dist", "templates", "README.md", "LICENSE" ] }