{
  "name": "semantic-release-pypi",
  "version": "5.3.0",
  "description": "semantic-release plugin to publish a python package to PyPI",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "repository": "https://github.com/abichinger/semantic-release-pypi",
  "author": "Andreas Bichinger",
  "license": "MIT",
  "private": false,
  "devDependencies": {
    "@semantic-release/git": "^10.0.1",
    "@types/lodash": "^4.17.13",
    "@types/node": "^22.19.15",
    "@types/uuid": "^9.0.4",
    "@typescript-eslint/eslint-plugin": "^6.7.4",
    "@typescript-eslint/parser": "^6.7.4",
    "copyfiles": "^2.4.1",
    "eslint": "8.50.0",
    "eslint-config-prettier": "9.0.0",
    "eslint-plugin-prettier": "5.0.0",
    "fs-extra": "^10.0.0",
    "prettier": "^3.0.3",
    "rimraf": "^5.0.5",
    "semantic-release": "^25.0.3",
    "typescript": "^5.2.2",
    "uuid": "^13.0.0",
    "vitest": "^4.0.18"
  },
  "scripts": {
    "build": "npm run clean && tsc --project tsconfig.build.json && npm run copy",
    "test:unit": "vitest --config vitest.config.ts",
    "test:e2e": "vitest --config vitest.e2e.config.ts",
    "test:all": "vitest run --config vitest.config.ts && vitest run --config vitest.e2e.config.ts",
    "lint": "eslint lib/*.ts test/*.ts",
    "clean": "rimraf dist/ && rimraf .tmp/",
    "copy": "copyfiles -u 1 lib/py/* dist"
  },
  "dependencies": {
    "execa": "^9.4.1",
    "form-data": "^3.0.0",
    "got": "^12.6.1",
    "lodash": "^4.17.21",
    "smol-toml": "^1.3.1"
  },
  "files": [
    "dist/*",
    "requirements.txt"
  ],
  "keywords": [
    "pypi",
    "python",
    "python package",
    "semantic-release",
    "publish"
  ]
}
