- Add CI workflow for pull requests and pushes with lint, test, and build steps - Add release workflow for tagged versions with automated publishing - Add manual test-release workflow for on-demand validation - Add workflow validation tests and remove obsolete build/test files - Update README with CI/CD documentation and badge references
28 lines
566 B
JSON
28 lines
566 B
JSON
{
|
|
"name": "hai",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"bin": {
|
|
"hai": "./dist/bin.js"
|
|
},
|
|
"scripts": {
|
|
"dev": "tsx src/bin.ts",
|
|
"build": "tsc",
|
|
"build:exe": "bun run build.ts",
|
|
"build:exe:all": "bun run build.ts --all",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest run"
|
|
},
|
|
"dependencies": {
|
|
"@hai/core": "workspace:*",
|
|
"@hai/dashboard": "workspace:*",
|
|
"@hai/engine": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"tsx": "^4.19.0",
|
|
"typescript": "^5.7.0",
|
|
"vitest": "^3.1.0",
|
|
"yaml": "^2.8.3"
|
|
}
|
|
}
|