{
  "name": "serverless-swc",
  "version": "2.0.0",
  "description": "Serverless plugin for zero-config JavaScript and TypeScript code bundling using extremely fast SWC",
  "keywords": [
    "serverless",
    "serverless plugin",
    "plugin",
    "swc",
    "aws lambda",
    "aws",
    "lambda",
    "bundler",
    "minifier",
    "typescript"
  ],
  "homepage": "https://floydspace.github.io/serverless-swc",
  "bugs": {
    "url": "https://github.com/floydspace/serverless-swc/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/floydspace/serverless-swc.git"
  },
  "license": "MIT",
  "contributors": [
    {
      "name": "Victor Korzunin",
      "url": "https://floydspace.github.io"
    },
    {
      "name": "Eduard Castellanos",
      "url": "https://github.com/eduardmcfly"
    }
  ],
  "files": [
    "dist"
  ],
  "main": "dist/cjs/index.cjs",
  "module": "dist/esm/index.mjs",
  "types": "dist/cjs/index.d.cts",
  "bin": {
    "prisma-metadata-generator": "./src/generators/meta.js"
  },
  "exports": {
    ".": {
      "types": "./dist/cjs/index.d.cts",
      "import": {
        "types": "./dist/esm/index.d.mts",
        "default": "./dist/esm/index.mjs"
      },
      "require": {
        "types": "./dist/cjs/index.d.cts",
        "default": "./dist/cjs/index.cjs"
      },
      "default": "./dist/cjs/index.cjs"
    }
  },
  "scripts": {
    "prepublishOnly": "npm run build",
    "precommit": "npm run test",
    "prebuild": "npm run clean",
    "build": "tsdown",
    "dev": "npm run build -- --watch",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf ./dist",
    "pretest": "npm run lint",
    "test": "jest --passWithNoTests",
    "test:e2e": "make -f e2e/Makefile",
    "lint": "eslint .",
    "prepare": "husky install"
  },
  "lint-staged": {
    "*.ts": [
      "prettier --write",
      "eslint"
    ]
  },
  "prettier": "@floydspace/prettier-config",
  "dependencies": {
    "@effect/platform": "^0.65.5",
    "@effect/platform-node": "^0.60.5",
    "@effect/schema": "^0.73.4",
    "acorn": "^8.8.1",
    "acorn-walk": "^8.2.0",
    "anymatch": "^3.1.3",
    "archiver": "^5.3.1",
    "bestzip": "^2.2.1",
    "chokidar": "^3.5.3",
    "effect": "^3.8.3",
    "execa": "^5.1.1",
    "fs-extra": "^11.1.0",
    "globby": "^11.0.4",
    "p-map": "^4.0.0",
    "ramda": "^0.28.0",
    "semver": "^7.3.8"
  },
  "peerDependencies": {
    "@swc/core": "^1.15.13"
  },
  "devDependencies": {
    "@commitlint/cli": "^17.3.0",
    "@commitlint/config-conventional": "^17.3.0",
    "@floydspace/eslint-config": "^1.37.0",
    "@floydspace/prettier-config": "^1.37.0",
    "@swc/core": "^1.15.13",
    "@types/archiver": "^5.3.1",
    "@types/fs-extra": "^9.0.13",
    "@types/jest": "^29.2.4",
    "@types/mock-fs": "^4.13.1",
    "@types/node": "^18.11.18",
    "@types/ramda": "^0.28.20",
    "@types/semver": "^7.3.13",
    "@types/serverless": "^3.12.14",
    "all-contributors-cli": "^6.24.0",
    "eslint": "^8.56.0",
    "extract-zip": "^2.0.1",
    "husky": "^8.0.2",
    "jest": "^29.3.1",
    "lint-staged": "^13.1.0",
    "mock-fs": "^5.3.0",
    "mock-spawn": "^0.2.6",
    "prettier": "^2.8.1",
    "semantic-release": "^25.0.2",
    "ts-jest": "^29.2.5",
    "tsdown": "^0.20.3",
    "typescript": "~5.5.4"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "overrides": {
    "eslint": "$eslint"
  }
}