lens-engine 0.1.0 → 0.1.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.
Files changed (3) hide show
  1. package/cli.js +1 -1
  2. package/daemon.js +1 -1
  3. package/package.json +2 -5
package/cli.js CHANGED
@@ -3504,7 +3504,7 @@ function getCloudUrl() {
3504
3504
  if (cfg2.cloud_url) return cfg2.cloud_url;
3505
3505
  } catch {
3506
3506
  }
3507
- return "https://lens.dev";
3507
+ return "https://lens-production-e9fd.up.railway.app";
3508
3508
  }
3509
3509
  function readConfigSync() {
3510
3510
  try {
package/daemon.js CHANGED
@@ -10564,7 +10564,7 @@ var init_config = __esm({
10564
10564
  "apps/daemon/src/config.ts"() {
10565
10565
  "use strict";
10566
10566
  CONFIG_PATH = join4(homedir2(), ".lens", "config.json");
10567
- DEFAULT_CLOUD_URL = "https://lens.dev";
10567
+ DEFAULT_CLOUD_URL = "https://lens-production-e9fd.up.railway.app";
10568
10568
  }
10569
10569
  });
10570
10570
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lens-engine",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "LENS — Local-first repo context engine for AI agents",
5
5
  "type": "module",
6
6
  "bin": {
@@ -15,8 +15,5 @@
15
15
  "node": ">=20"
16
16
  },
17
17
  "license": "MIT",
18
- "repository": {
19
- "type": "git",
20
- "url": "https://github.com/j10ra/lens"
21
- }
18
+ "homepage": "https://getlens.dev"
22
19
  }