{
  "name": "env-manage-plugin",
  "version": "0.5.7",
  "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",
    "minimatch": "^10.2.4",
    "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.3",
    "zod": "^4.0.16"
  },
  "devDependencies": {
    "@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": "^17.3.0",
    "nodemon": "^3.1.9",
    "tsx": "^4.20.3",
    "typescript": "^5.8.2"
  },
  "bugs": {
    "url": "https://github.com/lumos934/env-plugin/issues"
  },
  "homepage": "https://github.com/lumos934/env-plugin#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/lumos934/env-plugin.git"
  },
  "engines": {
    "node": ">=14.0.0"
  },
  "files": [
    "bin/index.js",
    "dist",
    "templates",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "dev": "cross-env NODE_ENV=development tsx watch --tsconfig tsconfig.dev.json -- ./bin/index.ts",
    "build": "tsc -p tsconfig.build.json",
    "lint": "eslint ./src"
  }
}