bopodev 0.1.0 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/LICENSE +21 -0
  2. package/dist/index.js +7 -7
  3. package/package.json +11 -9
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 BopoHQ contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/dist/index.js CHANGED
@@ -170,10 +170,10 @@ function printSummaryCard(lines) {
170
170
  async function runDoctorCommand(cwd) {
171
171
  const workspaceRoot = await resolveWorkspaceRoot(cwd);
172
172
  if (!workspaceRoot) {
173
- throw new Error("Could not find a pnpm workspace root. Run this command from inside the BopoHQ repo.");
173
+ throw new Error("Could not find a pnpm workspace root. Run this command from inside the Bopodev repo.");
174
174
  }
175
175
  printBanner();
176
- printSection("bopo doctor");
176
+ printSection("bopodev doctor");
177
177
  printLine(`Workspace: ${workspaceRoot}`);
178
178
  printDivider();
179
179
  const checks = await runDoctorChecks({ workspaceRoot });
@@ -216,10 +216,10 @@ var defaultDeps = {
216
216
  async function runOnboardFlow(options, deps = defaultDeps) {
217
217
  const workspaceRoot = await resolveWorkspaceRoot(options.cwd);
218
218
  if (!workspaceRoot) {
219
- throw new Error("Could not find a pnpm workspace root. Run this command from inside the BopoHQ repo.");
219
+ throw new Error("Could not find a pnpm workspace root. Run this command from inside the Bopodev repo.");
220
220
  }
221
221
  printBanner();
222
- printSection("bopo onboard");
222
+ printSection("bopodev onboard");
223
223
  printLine(`Workspace: ${workspaceRoot}`);
224
224
  printDivider();
225
225
  if (!options.yes) {
@@ -277,7 +277,7 @@ async function runOnboardFlow(options, deps = defaultDeps) {
277
277
  } else {
278
278
  printSection("Next commands");
279
279
  printLine("- Run: pnpm start");
280
- printLine("- Diagnose: bopo doctor");
280
+ printLine("- Diagnose: bopodev doctor");
281
281
  }
282
282
  return {
283
283
  workspaceRoot,
@@ -316,8 +316,8 @@ async function hasExistingInstall(workspaceRoot) {
316
316
 
317
317
  // src/index.ts
318
318
  var program = new Command();
319
- program.name("bopo").description("BopoHQ CLI");
320
- program.command("onboard").description("Install, configure, and start BopoHQ locally").option("--yes", "Run non-interactively using defaults", false).option("--force-install", "Force reinstall dependencies even if already installed", false).option("--no-start", "Run setup and doctor checks without starting services").action(async (options) => {
319
+ program.name("bopodev").description("Bopodev CLI");
320
+ program.command("onboard").description("Install, configure, and start Bopodev locally").option("--yes", "Run non-interactively using defaults", false).option("--force-install", "Force reinstall dependencies even if already installed", false).option("--no-start", "Run setup and doctor checks without starting services").action(async (options) => {
321
321
  try {
322
322
  await runOnboardFlow({
323
323
  cwd: process.cwd(),
package/package.json CHANGED
@@ -1,22 +1,18 @@
1
1
  {
2
2
  "name": "bopodev",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "bopodev": "./dist/index.js",
8
8
  "bopo": "./dist/index.js"
9
9
  },
10
- "files": ["dist"],
10
+ "files": [
11
+ "dist"
12
+ ],
11
13
  "publishConfig": {
12
14
  "access": "public"
13
15
  },
14
- "scripts": {
15
- "cli:dev": "tsx src/index.ts",
16
- "build": "tsup src/index.ts --format esm --platform node --target node20 --out-dir dist",
17
- "lint": "tsc -p tsconfig.json --noEmit",
18
- "typecheck": "tsc -p tsconfig.json --noEmit"
19
- },
20
16
  "dependencies": {
21
17
  "@clack/prompts": "^0.10.0",
22
18
  "commander": "^13.1.0",
@@ -28,5 +24,11 @@
28
24
  "tsup": "^8.5.0",
29
25
  "tsx": "^4.20.5",
30
26
  "typescript": "^5.9.2"
27
+ },
28
+ "scripts": {
29
+ "cli:dev": "tsx src/index.ts",
30
+ "build": "tsup src/index.ts --format esm --platform node --target node20 --out-dir dist",
31
+ "lint": "tsc -p tsconfig.json --noEmit",
32
+ "typecheck": "tsc -p tsconfig.json --noEmit"
31
33
  }
32
- }
34
+ }