astro-deploy/package.json
semantic-release-bot 9281690e30 chore(release): 1.1.0 [skip ci]
# [1.1.0](https://github.com/deployn/astro-deploy/compare/v1.0.0...v1.1.0) (2024-02-17)

### Features

* **Docker:** add docker integration ([d8844bc](d8844bc907))
2024-02-17 08:39:56 +00:00

56 lines
1.3 KiB
JSON

{
"name": "astro-deploy",
"version": "1.1.0",
"description": "A custom Astro.js template",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"upgrade": "pnpm update --interactive --latest",
"commit": "cz"
},
"dependencies": {
"astro": "^4.4.0"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@commitlint/cz-commitlint": "^18.6.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"semantic-release": "^23.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"branches": [
"main",
{
"name": "beta",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
"@semantic-release/git",
"@semantic-release/github"
]
}
}