local-operator-ui 0.3.1 → 0.3.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.
- package/out/main/index.jsc +0 -0
- package/out/preload/index.jsc +0 -0
- package/package.json +25 -6
package/out/main/index.jsc
CHANGED
|
Binary file
|
package/out/preload/index.jsc
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "local-operator-ui",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"productName": "Local Operator",
|
|
5
5
|
"description": "User interface for the Local Operator agent environment",
|
|
6
6
|
"main": "./out/main/index.js",
|
|
@@ -10,13 +10,13 @@
|
|
|
10
10
|
"license": "GPL-3.0-or-later",
|
|
11
11
|
"author": {
|
|
12
12
|
"name": "Damian Tran",
|
|
13
|
-
"email": "
|
|
13
|
+
"email": "damian@local-operator.com",
|
|
14
14
|
"url": "https://github.com/damianvtran"
|
|
15
15
|
},
|
|
16
16
|
"contributors": [
|
|
17
17
|
{
|
|
18
18
|
"name": "Damian Tran",
|
|
19
|
-
"email": "
|
|
19
|
+
"email": "damian@local-operator.com",
|
|
20
20
|
"url": "https://github.com/damianvtran"
|
|
21
21
|
}
|
|
22
22
|
],
|
|
@@ -211,15 +211,34 @@
|
|
|
211
211
|
},
|
|
212
212
|
"linux": {
|
|
213
213
|
"icon": "resources/icon-512x512.png",
|
|
214
|
-
"category": "
|
|
215
|
-
"target": [
|
|
214
|
+
"category": "ArtificialIntelligence",
|
|
215
|
+
"target": [
|
|
216
|
+
{
|
|
217
|
+
"target": "deb",
|
|
218
|
+
"arch": "x64"
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"target": "AppImage",
|
|
222
|
+
"arch": "x64"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"target": "rpm",
|
|
226
|
+
"arch": "x64"
|
|
227
|
+
}
|
|
228
|
+
],
|
|
216
229
|
"artifactName": "${name}-${version}-${arch}.${ext}",
|
|
217
230
|
"desktop": {
|
|
218
231
|
"Name": "Local Operator",
|
|
219
232
|
"Comment": "AI Agent Assistants On Your Device",
|
|
220
|
-
"Categories": "
|
|
233
|
+
"Categories": "ArtificialIntelligence"
|
|
221
234
|
}
|
|
222
235
|
},
|
|
236
|
+
"deb": {
|
|
237
|
+
"depends": ["python3.12-full", "python3.12-venv"]
|
|
238
|
+
},
|
|
239
|
+
"rpm": {
|
|
240
|
+
"depends": ["python3.12-full", "python3.12-venv"]
|
|
241
|
+
},
|
|
223
242
|
"publish": {
|
|
224
243
|
"provider": "github",
|
|
225
244
|
"owner": "damianvtran",
|