vybekiit 0.7.9 → 0.7.10

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.
package/dist/bin.js CHANGED
@@ -10508,7 +10508,7 @@ var packageRelFromPackagesRoot = (packagesRoot, packageDir) => {
10508
10508
  };
10509
10509
 
10510
10510
  // src/lib/scaffoldKitWorkspace.ts
10511
- var KIT_BUILD_ROOT_FILES = ["tsconfig.base.json"];
10511
+ var KIT_BUILD_ROOT_FILES = ["tsconfig.base.json", "tsup.base.ts"];
10512
10512
  var KIT_BUILD_SCRIPT_LIBS = [
10513
10513
  "scripts/lib/packageExportEntries.mjs",
10514
10514
  "scripts/lib/tsupWorkspaceAliases.mjs",
@@ -11014,21 +11014,29 @@ var defaultPathExists = async (path) => {
11014
11014
  return false;
11015
11015
  }
11016
11016
  };
11017
- var BUYER_BUILD_HELPER = join14("scripts", "lib", "tsupWorkspaceAliases.mjs");
11017
+ var BUYER_BUILD_ROOTS = [
11018
+ join14("scripts", "lib", "tsupWorkspaceAliases.mjs"),
11019
+ "tsup.base.ts"
11020
+ ];
11018
11021
  var repairProjectBuildRoots = async (appPath, deps = {
11019
11022
  pathExists: pathExists3,
11020
11023
  locateKit: locateKitWorkspace,
11021
11024
  repairFromKit: repairKitBuildRoots
11022
11025
  }) => {
11023
- const helperPath = join14(appPath, BUYER_BUILD_HELPER);
11024
- if (await deps.pathExists(helperPath)) {
11026
+ const buildRootsReady = async () => {
11027
+ const checks = await Promise.all(
11028
+ BUYER_BUILD_ROOTS.map((relativePath) => deps.pathExists(join14(appPath, relativePath)))
11029
+ );
11030
+ return checks.every(Boolean);
11031
+ };
11032
+ if (await buildRootsReady()) {
11025
11033
  return true;
11026
11034
  }
11027
11035
  let source;
11028
11036
  try {
11029
11037
  source = await deps.locateKit();
11030
11038
  await deps.repairFromKit(source.kitRoot, appPath);
11031
- return await deps.pathExists(helperPath);
11039
+ return await buildRootsReady();
11032
11040
  } catch {
11033
11041
  return false;
11034
11042
  } finally {
package/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "vybekiit",
3
- "version": "0.7.9",
3
+ "version": "0.7.10",
4
4
  "description": "Choose your services, sign in, create a VybeKiit app, and open its verified local welcome page.",
5
5
  "license": "MIT",
6
+ "packageManager": "pnpm@10.33.2",
6
7
  "publishConfig": {
7
8
  "access": "public"
8
9
  },
@@ -13,36 +14,36 @@
13
14
  "files": [
14
15
  "dist"
15
16
  ],
17
+ "scripts": {
18
+ "build": "tsup && node scripts/bundleGlobalSkills.mjs",
19
+ "typecheck": "tsc --noEmit",
20
+ "test": "vitest run"
21
+ },
16
22
  "dependencies": {
17
23
  "@modelcontextprotocol/sdk": "^1.12.1",
18
24
  "@aws-sdk/client-dynamodb": "^3.1075.0",
19
25
  "@aws-sdk/client-s3": "^3.1075.0",
20
26
  "@aws-sdk/lib-dynamodb": "^3.1075.0",
21
- "@clack/prompts": "1.7.0",
27
+ "@clack/prompts": "catalog:",
22
28
  "@neondatabase/serverless": "^0.10.4",
23
29
  "@supabase/supabase-js": "^2.47.10",
24
- "effect": "3.21.4",
30
+ "effect": "catalog:",
25
31
  "firebase-admin": "^13.0.2",
26
32
  "mongodb": "^7.4.0",
27
- "open": "11.0.0",
33
+ "open": "catalog:",
28
34
  "playwright": "^1.61.1"
29
35
  },
30
36
  "devDependencies": {
31
- "@types/node": "22.20.0",
32
- "tsup": "8.5.1",
33
- "typescript": "5.7.2",
34
- "vitest": "3.2.6",
35
- "@vybekiit/agent-kit": "0.7.9",
36
- "@vybekiit/core": "0.7.9",
37
- "@vybekiit/db": "0.7.9",
38
- "@vybekiit/agent-mcp": "0.7.9",
39
- "@vybekiit/report-mode": "0.7.9",
40
- "@vybekiit/deploy": "0.7.9",
41
- "@vybekiit/payments": "0.7.9"
42
- },
43
- "scripts": {
44
- "build": "tsup && node scripts/bundleGlobalSkills.mjs",
45
- "typecheck": "tsc --noEmit",
46
- "test": "vitest run"
37
+ "@types/node": "catalog:",
38
+ "tsup": "catalog:",
39
+ "typescript": "catalog:",
40
+ "vitest": "catalog:",
41
+ "@vybekiit/agent-kit": "workspace:*",
42
+ "@vybekiit/agent-mcp": "workspace:*",
43
+ "@vybekiit/core": "workspace:*",
44
+ "@vybekiit/db": "workspace:*",
45
+ "@vybekiit/deploy": "workspace:*",
46
+ "@vybekiit/payments": "workspace:*",
47
+ "@vybekiit/report-mode": "workspace:*"
47
48
  }
48
- }
49
+ }