Files
worker-dashboard/packages/cli/package.json
T
xiaoju 0c3624ddca refactor(cli): migrate packages/cli from MJS to TypeScript
Migrate urec and uconn CLI tools from plain JavaScript (.mjs) to TypeScript (.ts) with full type safety and strict mode enabled.

Changes:
- Created TypeScript configuration (tsconfig.json) with strict mode
- Migrated src/urec.mjs to src/urec.ts with proper type annotations
- Migrated src/uconn.mjs to src/uconn.ts with proper type annotations
- Added type declarations for @uncaged/dashboard-server/protocol
- Updated package.json with build script and bin entries pointing to dist/
- Added comprehensive test suites for type safety and functionality
- Added .gitignore to exclude built artifacts

Type Safety:
- No implicit any types throughout the codebase
- Explicit type annotations for all variables and functions
- Proper null safety with strictNullChecks
- Full type coverage for Node.js built-ins and external dependencies

Testing:
- 22 passing tests covering type safety, build config, and functionality
- Tests verify TypeScript compilation succeeds
- Tests verify executables work correctly with preserved shebangs
- Tests verify backward compatibility of CLI behavior

Build:
- TypeScript compiles successfully with no errors
- Built files maintain ESM format
- Shebang lines preserved in output
- Source maps generated for debugging

Resolves #1

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-05-28 10:15:03 +00:00

33 lines
725 B
JSON

{
"name": "@uncaged/cli-dashboard",
"version": "1.0.0",
"type": "module",
"bin": {
"urec": "./dist/urec.js",
"uconn": "./dist/uconn.js"
},
"files": ["src", "dist", "package.json"],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://git.shazhou.work/uncaged/worker-dashboard.git",
"directory": "packages/cli"
},
"scripts": {
"build": "tsc",
"test": "vitest run --passWithNoTests",
"test:ci": "vitest run --passWithNoTests"
},
"dependencies": {
"ws": "^8.18.0",
"chokidar": "^4.0.0",
"commander": "^13.1.0",
"@uncaged/dashboard-server": "workspace:^"
},
"devDependencies": {
"@types/ws": "^8.18.1"
}
}