nexus/packages/buildthis/package.json
Nexus Dev 1262e4a243 feat(35-01): buildthis CLI package — hardware detection + bootstrap
Standalone npm package at packages/buildthis/. Probes running Nexus
instance, opens browser if found, guides install with hardware-aware
provider recommendations if not. 14 tests.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-04 03:55:49 +00:00

39 lines
943 B
JSON

{
"name": "buildthis",
"version": "0.1.0",
"description": "Bootstrap your AI workspace with a single command",
"type": "module",
"bin": {
"buildthis": "./dist/index.js"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "node --input-type=module -e \"import esbuild from 'esbuild'; import config from './esbuild.config.mjs'; await esbuild.build(config);\" && chmod +x dist/index.js",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"dependencies": {
"@clack/prompts": "^0.10.0",
"commander": "^13.1.0",
"open": "^11.0.0",
"picocolors": "^1.1.1",
"systeminformation": "5"
},
"devDependencies": {
"@types/node": "^22.12.0",
"esbuild": "latest",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^2.0.0"
}
}