@rehpic/vcli 0.1.0-beta.82.1 → 0.1.0-beta.83.1

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/index.js CHANGED
@@ -735,76 +735,6 @@ var init_open = __esm({
735
735
  }
736
736
  });
737
737
 
738
- // package.json
739
- var package_exports = {};
740
- __export(package_exports, {
741
- default: () => package_default
742
- });
743
- var package_default;
744
- var init_package = __esm({
745
- "package.json"() {
746
- package_default = {
747
- name: "@rehpic/vcli",
748
- version: "0.1.0",
749
- description: "Command line interface for Vector workspaces.",
750
- license: "Apache-2.0",
751
- type: "module",
752
- repository: {
753
- type: "git",
754
- url: "git+https://github.com/xrehpicx/vector.git",
755
- directory: "packages/vector-cli"
756
- },
757
- homepage: "https://github.com/xrehpicx/vector/tree/main/packages/vector-cli#readme",
758
- bugs: {
759
- url: "https://github.com/xrehpicx/vector/issues"
760
- },
761
- keywords: [
762
- "vector",
763
- "cli",
764
- "project-management",
765
- "convex",
766
- "issues"
767
- ],
768
- engines: {
769
- node: ">=20.19.0"
770
- },
771
- bin: {
772
- vcli: "dist/index.js"
773
- },
774
- files: [
775
- "dist",
776
- "native",
777
- "scripts",
778
- "README.md"
779
- ],
780
- scripts: {
781
- build: "node scripts/build-menubar-app.js && tsup --config tsup.config.ts"
782
- },
783
- dependencies: {
784
- "@anthropic-ai/claude-agent-sdk": "^0.2.79",
785
- "@clack/prompts": "^1.1.0",
786
- commander: "^14.0.3",
787
- convex: "^1.33.1",
788
- dotenv: "^16.4.5",
789
- localtunnel: "^2.0.2",
790
- "node-datachannel": "^0.32.1",
791
- "node-pty": "1.2.0-beta.12",
792
- tunnelmole: "^2.4.0",
793
- werift: "^0.22.9",
794
- ws: "^8.19.0"
795
- },
796
- publishConfig: {
797
- access: "public",
798
- provenance: true
799
- },
800
- devDependencies: {
801
- "@types/localtunnel": "^2.0.4",
802
- "@types/ws": "^8.18.1"
803
- }
804
- };
805
- }
806
- });
807
-
808
738
  // src/index.ts
809
739
  import { readFileSync as readFileSync3 } from "fs";
810
740
  import { readFile as readFile2 } from "fs/promises";
@@ -5944,8 +5874,7 @@ async function checkForUpdate() {
5944
5874
  }).trim();
5945
5875
  const tags = JSON.parse(tagsRaw);
5946
5876
  const latest = tags.latest?.includes("beta") ? tags.beta ?? tags.latest : tags.latest ?? tags.beta ?? "";
5947
- const pkg = await Promise.resolve().then(() => (init_package(), package_exports));
5948
- const current = pkg.default?.version ?? pkg.version ?? "0.0.0";
5877
+ const current = readPackageVersionSync();
5949
5878
  return {
5950
5879
  current,
5951
5880
  latest,