- Install and configure @changesets/cli with commit/access settings - Create version PR workflow (.github/workflows/version.yml) for automated version bumps - Update existing release and test-release workflows with version validation - Add example changeset and version tests for CI verification - Add RELEASING.md guide and update README with versioning documentation
31 lines
764 B
JSON
31 lines
764 B
JSON
{
|
|
"name": "hai-workspace",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"packageManager": "pnpm@10.33.0",
|
|
"scripts": {
|
|
"dev": "tsx packages/cli/src/bin.ts",
|
|
"dev:ui": "pnpm --filter @hai/dashboard dev",
|
|
"build": "pnpm -r build",
|
|
"build:exe": "pnpm build && pnpm --filter hai build:exe",
|
|
"build:exe:all": "pnpm build && pnpm --filter hai build:exe:all",
|
|
"typecheck": "pnpm -r typecheck",
|
|
"changeset": "changeset",
|
|
"version": "changeset version",
|
|
"release:version": "changeset version"
|
|
},
|
|
"pnpm": {
|
|
"onlyBuiltDependencies": [
|
|
"esbuild",
|
|
"koffi",
|
|
"protobufjs"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@changesets/cli": "^2.30.0",
|
|
"tsx": "^4.19.0",
|
|
"typescript": "^5.7.0"
|
|
}
|
|
}
|