astro-deploy/package.json
semantic-release-bot 9e18aa366c chore(release): 1.3.0 [skip ci]
# [1.3.0](https://github.com/deployn/astro-deploy/compare/v1.2.0...v1.3.0) (2024-02-17)

### Features

* add tailwind css support ([b18b952](b18b95274b))
2024-02-17 12:33:12 +00:00

63 lines
1.5 KiB
JSON

{
"name": "astro-deploy",
"type": "module",
"version": "1.3.0",
"description": "A custom Astro.js template",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"format": "prettier -w --cache . && prettier -w --cache **/*.astro",
"astro": "astro",
"upgrade": "pnpm update --interactive --latest",
"commit": "cz"
},
"dependencies": {
"@astrojs/tailwind": "^5.1.0",
"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",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"prettier-plugin-tailwindcss": "^0.5.11",
"semantic-release": "^23.0.2",
"tailwindcss": "^3.4.1"
},
"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"
]
}
}