2026-03-17 02:55:52 +00:00
|
|
|
{
|
2026-03-17 11:05:41 +00:00
|
|
|
"name": "lab",
|
2026-03-17 02:55:52 +00:00
|
|
|
"version": "0.1.0",
|
|
|
|
|
"private": true,
|
|
|
|
|
"description": "PXE bastion server for discover-first bare-metal provisioning",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"scripts": {
|
2026-03-17 11:05:41 +00:00
|
|
|
"build": "pnpm -r run build",
|
2026-03-17 02:55:52 +00:00
|
|
|
"test": "vitest",
|
|
|
|
|
"test:run": "vitest run",
|
2026-03-17 11:05:41 +00:00
|
|
|
"typecheck": "tsc --build",
|
|
|
|
|
"clean": "pnpm -r run clean && rimraf node_modules",
|
feat: ESLint, shell completions, Docker, nfpm packaging, CI/CD
- ESLint with typescript-eslint + prettier (eslint.config.js)
- Shell completions for bash and fish (scripts/generate-completions.ts)
- Multi-stage Dockerfile for bastion (fedora:43 + dnsmasq + node)
- nfpm.yaml for RPM/DEB packaging with bun-compiled binary
- Build scripts: build-rpm.sh, build-bastion.sh, publish-rpm/deb.sh
- Gitea Actions CI/CD: lint, typecheck, test, build, publish
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-17 21:51:01 +00:00
|
|
|
"lint": "eslint 'src/*/src/**/*.ts'",
|
|
|
|
|
"lint:fix": "eslint 'src/*/src/**/*.ts' --fix",
|
|
|
|
|
"completions:generate": "tsx scripts/generate-completions.ts --write",
|
|
|
|
|
"completions:check": "tsx scripts/generate-completions.ts --check"
|
2026-03-17 02:55:52 +00:00
|
|
|
},
|
|
|
|
|
"engines": {
|
|
|
|
|
"node": ">=20.0.0",
|
|
|
|
|
"pnpm": ">=9.0.0"
|
|
|
|
|
},
|
|
|
|
|
"packageManager": "pnpm@9.15.0",
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@types/node": "^22.10.0",
|
feat: ESLint, shell completions, Docker, nfpm packaging, CI/CD
- ESLint with typescript-eslint + prettier (eslint.config.js)
- Shell completions for bash and fish (scripts/generate-completions.ts)
- Multi-stage Dockerfile for bastion (fedora:43 + dnsmasq + node)
- nfpm.yaml for RPM/DEB packaging with bun-compiled binary
- Build scripts: build-rpm.sh, build-bastion.sh, publish-rpm/deb.sh
- Gitea Actions CI/CD: lint, typecheck, test, build, publish
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-17 21:51:01 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^8.57.1",
|
|
|
|
|
"@typescript-eslint/parser": "^8.57.1",
|
|
|
|
|
"eslint": "^10.0.3",
|
|
|
|
|
"eslint-config-prettier": "^10.1.8",
|
2026-03-17 02:55:52 +00:00
|
|
|
"rimraf": "^6.0.0",
|
|
|
|
|
"tsx": "^4.21.0",
|
|
|
|
|
"typescript": "^5.7.0",
|
|
|
|
|
"vitest": "^3.0.0"
|
|
|
|
|
}
|
|
|
|
|
}
|