{
  "name": "@mercuryworkshop/bare-transport",
  "version": "1.0.0",
  "description": "a proxy-transport that implements the bare server",
  "main": "./dist/index.js",
  "keywords": [],
  "author": {
    "name": "Mercury Workshop",
    "email": "support@mercurywork.shop",
    "url": "https://mercurywork.shop"
  },
  "license": "LGPL-3.0",
  "type": "module",
  "repository": {
    "type": "git",
    "url": "https://github.com/MercuryWorkshop/bare-transport.git"
  },
  "homepage": "https://github.com/MercuryWorkshop/bare-transport",
  "bugs": {
    "url": "https://github.com/MercuryWorkshop/bare-transport/issues",
    "email": "support@mercurywork.shop"
  },
  "files": [
    "dist",
    "lib"
  ],
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "require": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "devDependencies": {
    "@ianvs/prettier-plugin-sort-imports": "^4.3.1",
    "@rollup/plugin-inject": "^5.0.5",
    "@typescript-eslint/eslint-plugin": "^8.11.0",
    "@typescript-eslint/parser": "^8.11.0",
    "eslint": "^9.13.0",
    "prettier": "^3.3.3",
    "typescript": "^5.6.3",
    "rollup": "^4.24.0",
    "rollup-plugin-typescript2": "^0.36.0"
  },
  "dependencies": {
    "@mercuryworkshop/proxy-transports": "^1.0.2"
  },
  "scripts": {
    "build": "rollup -c",
    "watch": "rollup -cw",
    "format": "prettier --config .prettierrc.js --write .",
    "lint": "eslint ./src/",
    "lint:fix": "eslint ./src/ --fix"
  }
}