env-manage-plugin
Version:
A dev env plugin that integrates an Express server with request proxying capabilities.
78 lines • 1.89 kB
JSON
{
"name": "env-manage-plugin",
"version": "0.5.2",
"type": "module",
"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"
],
"bin": {
"envm": "bin/index.js"
},
"main": "./dist/Plugin.js",
"exports": {
".": {
"import": "./dist/Plugin.js"
}
},
"author": "lcn",
"license": "MIT",
"dependencies": {
"commander": "^13.1.0",
"cookie": "^1.0.2",
"dotenv": "^17.1.0",
"express": "^4.21.2",
"express-static-gzip": "^2.2.0",
"http-proxy-middleware": "^3.0.3",
"lokijs": "^1.5.12",
"pino": "^9.9.0",
"pino-pretty": "^13.1.1",
"portfinder": "^1.0.35",
"set-cookie-parser": "^2.7.1",
"tslib": "^2.8.1",
"unplugin": "^2.2.0",
"uuid": "^10.0.0",
"ws": "^8.18.1",
"zod": "^4.0.16"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^4.2.0",
"@types/express": "^4.17.23",
"@types/lokijs": "^1.5.14",
"@types/set-cookie-parser": "^2.4.10",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.18.0",
"globals": "^16.1.0",
"nodemon": "^3.1.9",
"tsx": "^4.20.3",
"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/index.js",
"dist",
"templates",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "tsx watch --tsconfig tsconfig.dev.json -- ./bin/index.ts",
"build": "tsc -p tsconfig.build.json",
"lint": "eslint ./src"
}
}