mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
- Set up semantic-release with zero-touch CI pipeline on push to main - Add version sync script to keep all package.json files and APP_VERSION constant in sync automatically - Consolidate Docker publishing into single tag-triggered workflow that pushes to both Docker Hub and ghcr.io with semver tags - Add help dialog with keyboard shortcuts, getting started guide, and resource links - Sync all versions to 0.2.1 to match Docker Hub latest
33 lines
1010 B
JSON
33 lines
1010 B
JSON
{
|
|
"name": "stirling-image",
|
|
"version": "0.2.1",
|
|
"private": true,
|
|
"packageManager": "pnpm@9.15.4",
|
|
"scripts": {
|
|
"dev": "turbo dev",
|
|
"docs:dev": "pnpm --filter @stirling-image/docs docs:dev",
|
|
"build": "turbo build",
|
|
"lint": "turbo lint",
|
|
"clean": "turbo clean",
|
|
"typecheck": "turbo typecheck",
|
|
"test:e2e": "playwright test",
|
|
"test:e2e:ui": "playwright test --ui",
|
|
"version:sync": "./scripts/sync-version.sh",
|
|
"release": "semantic-release",
|
|
"release:dry": "semantic-release --dry-run"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.58.2",
|
|
"@semantic-release/changelog": "^6.0.3",
|
|
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
"@semantic-release/exec": "^7.1.0",
|
|
"@semantic-release/git": "^10.0.1",
|
|
"@semantic-release/github": "^12.0.6",
|
|
"@semantic-release/npm": "^13.1.5",
|
|
"@semantic-release/release-notes-generator": "^14.1.0",
|
|
"semantic-release": "^25.0.3",
|
|
"turbo": "^2.4.0",
|
|
"typescript": "^5.7.0"
|
|
}
|
|
}
|