{
  "name": "@palmares/server",
  "version": "0.3.0",
  "description": "The server from palmares, this is what you will use generally to make HTTP requests",
  "main": "./dist/src/index.cjs",
  "module": "./dist/src/index.js",
  "types": "./dist/src/index.d.ts",
  "files": [
    "dist",
    "package.json",
    "README.md",
    "CHANGELOG.md"
  ],
  "exports": {
    ".": {
      "types": "./dist/src/index.d.ts",
      "import": "./dist/src/index.js",
      "require": "./dist/src/index.cjs"
    }
  },
  "type": "module",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/palmaresHQ/palmares.git"
  },
  "keywords": [
    "palmares",
    "server"
  ],
  "author": "Nicolas Melo",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/palmaresHQ/palmares/issues"
  },
  "homepage": "https://github.com/palmaresHQ/palmares#readme",
  "dependencies": {
    "@palmares/logging": "0.2.6",
    "@palmares/core": "0.2.6"
  },
  "scripts": {
    "clear": "rimraf ./dist",
    "build": "tsup ./src --out-dir ./dist/src --format cjs,esm --dts --tsconfig tsconfig.types.json --clean --silent --no-splitting",
    "build:watch": "tsup ./src --out-dir ./dist/src --format cjs,esm --dts --tsconfig tsconfig.types.json --watch --silent --no-splitting"
  }
}