lens-engine 0.1.20 → 0.1.21
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/cli.js +76 -2
- package/daemon.js +1257 -233
- package/dashboard/assets/{index-D5Z-3_m6.js → index-ojhLsux_.js} +16 -16
- package/dashboard/index.html +1 -1
- package/package.json +14 -3
package/dashboard/index.html
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<title>LENS Dashboard</title>
|
|
7
|
-
<script type="module" crossorigin src="/dashboard/assets/index-
|
|
7
|
+
<script type="module" crossorigin src="/dashboard/assets/index-ojhLsux_.js"></script>
|
|
8
8
|
<link rel="stylesheet" crossorigin href="/dashboard/assets/index-DmLHTAhP.css">
|
|
9
9
|
</head>
|
|
10
10
|
<body class="bg-background text-foreground antialiased">
|
package/package.json
CHANGED
|
@@ -1,13 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lens-engine",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.21",
|
|
4
4
|
"description": "LENS — Local-first repo context engine for AI agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"lens": "./cli.js",
|
|
8
8
|
"lens-daemon": "./daemon.js"
|
|
9
9
|
},
|
|
10
|
-
"files": [
|
|
10
|
+
"files": [
|
|
11
|
+
"cli.js",
|
|
12
|
+
"daemon.js",
|
|
13
|
+
"dashboard"
|
|
14
|
+
],
|
|
11
15
|
"dependencies": {
|
|
12
16
|
"better-sqlite3": "^12.6.2"
|
|
13
17
|
},
|
|
@@ -18,5 +22,12 @@
|
|
|
18
22
|
"postinstall": "echo '\\n Run \"lens start\" to launch the daemon (auto-starts on login).\\n'"
|
|
19
23
|
},
|
|
20
24
|
"license": "MIT",
|
|
21
|
-
"homepage": "https://
|
|
25
|
+
"homepage": "https://github.com/j10ra/lens",
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "https://github.com/j10ra/lens.git"
|
|
29
|
+
},
|
|
30
|
+
"bugs": {
|
|
31
|
+
"url": "https://github.com/j10ra/lens/issues"
|
|
32
|
+
}
|
|
22
33
|
}
|