@szum-tech/semantic-release-config
Version:
Recommended setup for releasing semantically using GitHub Actions workflows compliance with the Szum-Tech standards.
81 lines (80 loc) • 2.24 kB
JSON
{
"name": "@szum-tech/semantic-release-config",
"version": "2.3.1",
"description": "Recommended setup for releasing semantically using GitHub Actions workflows compliance with the Szum-Tech standards.",
"keywords": [
"szum-tech",
"Szum-Tech",
"semantic-release",
"conventional-changelog",
"semantic-release-config",
"publish",
"npm",
"npm-publish",
"github",
"github-publish",
"release"
],
"homepage": "https://github.com/JanSzewczyk/semantic-release-config#readme",
"bugs": {
"url": "https://github.com/JanSzewczyk/semantic-release-config/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JanSzewczyk/semantic-release-config.git"
},
"license": "MIT",
"author": "Szum-Tech <szum.tech@gmail.com>",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./with-npm": {
"import": "./dist/with-npm.js",
"require": "./dist/with-npm.cjs"
},
"./without-npm": {
"import": "./dist/without-npm.js",
"require": "./dist/without-npm.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"files": [
"dist/**"
],
"scripts": {
"build": "tsup",
"lint": "eslint .",
"lint:ci": "eslint . -o eslint-results.sarif -f @microsoft/eslint-formatter-sarif",
"lint:fix": "eslint . --fix",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write ."
},
"dependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.3",
"@semantic-release/npm": "^12.0.2",
"@semantic-release/release-notes-generator": "^14.0.3",
"conventional-changelog-conventionalcommits": "^9.0.0"
},
"devDependencies": {
"@szum-tech/eslint-config": "^2.1.6",
"@szum-tech/prettier-config": "^1.6.2",
"eslint": "^9.30.1",
"prettier": "^3.6.2",
"semantic-release": "^24.2.6",
"tsup": "^8.5.0",
"typescript": "^5.8.3"
},
"peerDependencies": {
"semantic-release": ">=24.0.0"
},
"publishConfig": {
"access": "public"
}
}