local-operator-ui 0.4.6 → 0.5.0
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/README.md +16 -0
- package/out/main/index.jsc +0 -0
- package/out/preload/index.jsc +0 -0
- package/out/renderer/assets/asn1-BnOEsgAm.js +144 -0
- package/out/renderer/assets/clojure-BhXMqnxz.js +849 -0
- package/out/renderer/assets/css-c-jst79C.js +1783 -0
- package/out/renderer/assets/{error-boundary-BSN19Qr4.js → fonts-ChEL5asK.js} +5849 -5579
- package/out/renderer/assets/{index-94BTFuhu.css → index-0vP6mKPB.css} +1 -1
- package/out/renderer/assets/index-B87fKloA.js +312 -0
- package/out/renderer/assets/index-CfuGYyUa.js +406 -0
- package/out/renderer/assets/index-CzJMsYKD.js +207664 -0
- package/out/renderer/assets/{installer-BKPh1hoG.js → installer-DV5yVW7q.js} +7 -3
- package/out/renderer/assets/javascript-C3MnDRiU.js +994 -0
- package/out/renderer/assets/mllike-DHn7xckP.js +334 -0
- package/out/renderer/assets/pug-By0kVCfm.js +405 -0
- package/out/renderer/assets/python-CvWbmiX4.js +427 -0
- package/out/renderer/assets/radient-icon-1024x1024-D_JJedvo.png +0 -0
- package/out/renderer/assets/rpm-C-DLY-If.js +109 -0
- package/out/renderer/assets/sql-BSrOzCRI.js +354 -0
- package/out/renderer/assets/ttcn-cfg-Dc39-fIP.js +133 -0
- package/out/renderer/index.html +6 -5
- package/out/renderer/installer.html +3 -3
- package/package.json +62 -24
- package/out/renderer/assets/index-BNTp0j7e.js +0 -117432
- /package/out/renderer/assets/{error-boundary-B9KBGB-g.css → fonts-B9KBGB-g.css} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "local-operator-ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"productName": "Local Operator",
|
|
5
5
|
"description": "User interface for AI agent assistants that run Python code safely on your device through an intuitive chat interface. Supports local and cloud LLM models with built-in security features.",
|
|
6
6
|
"main": "./out/main/index.js",
|
|
@@ -9,14 +9,14 @@
|
|
|
9
9
|
},
|
|
10
10
|
"license": "GPL-3.0-or-later",
|
|
11
11
|
"author": {
|
|
12
|
-
"name": "
|
|
13
|
-
"email": "
|
|
14
|
-
"url": "https://github.com/
|
|
12
|
+
"name": "Radient Inc.",
|
|
13
|
+
"email": "contact@radienthq.com",
|
|
14
|
+
"url": "https://github.com/radient-ml"
|
|
15
15
|
},
|
|
16
16
|
"contributors": [
|
|
17
17
|
{
|
|
18
18
|
"name": "Damian Tran",
|
|
19
|
-
"email": "damian@
|
|
19
|
+
"email": "damian@radienthq.com",
|
|
20
20
|
"url": "https://github.com/damianvtran"
|
|
21
21
|
}
|
|
22
22
|
],
|
|
@@ -30,14 +30,21 @@
|
|
|
30
30
|
},
|
|
31
31
|
"keywords": [
|
|
32
32
|
"local-operator",
|
|
33
|
+
"radient",
|
|
33
34
|
"agent",
|
|
35
|
+
"ai",
|
|
34
36
|
"python",
|
|
35
37
|
"tool use",
|
|
36
38
|
"ui",
|
|
37
39
|
"electron",
|
|
38
40
|
"react"
|
|
39
41
|
],
|
|
40
|
-
"files": [
|
|
42
|
+
"files": [
|
|
43
|
+
"out",
|
|
44
|
+
"bin",
|
|
45
|
+
"LICENSE",
|
|
46
|
+
"README.md"
|
|
47
|
+
],
|
|
41
48
|
"publishConfig": {
|
|
42
49
|
"access": "public"
|
|
43
50
|
},
|
|
@@ -46,12 +53,14 @@
|
|
|
46
53
|
"dev": "electron-vite dev",
|
|
47
54
|
"build": "electron-vite build",
|
|
48
55
|
"postbuild": "chmod +x ./bin/local-operator-ui.js",
|
|
49
|
-
"lint": "
|
|
50
|
-
"lint:fix": "
|
|
51
|
-
"format": "
|
|
52
|
-
"format:fix": "
|
|
53
|
-
"prepublishOnly": "
|
|
54
|
-
"check-types": "tsc --noEmit",
|
|
56
|
+
"lint": "pnpm biome check src",
|
|
57
|
+
"lint:fix": "pnpm biome check --write src",
|
|
58
|
+
"format": "pnpm biome format src",
|
|
59
|
+
"format:fix": "pnpm biome format --write src",
|
|
60
|
+
"prepublishOnly": "pnpm run build",
|
|
61
|
+
"check-types:main": "tsc --noEmit -p tsconfig.node.json",
|
|
62
|
+
"check-types:renderer": "tsc --noEmit -p tsconfig.app.json",
|
|
63
|
+
"check-types": "pnpm run check-types:main && pnpm run check-types:renderer",
|
|
55
64
|
"pack": "pnpm run build && electron-builder --dir",
|
|
56
65
|
"dist": "pnpm run build && electron-builder",
|
|
57
66
|
"dist:mac": "pnpm run build && electron-builder --mac --publish never",
|
|
@@ -73,17 +82,24 @@
|
|
|
73
82
|
"@fortawesome/free-solid-svg-icons": "^6.7.2",
|
|
74
83
|
"@fortawesome/react-fontawesome": "^0.2.2",
|
|
75
84
|
"@mui/material": "^6.4.2",
|
|
85
|
+
"@openid/appauth": "1.3.2",
|
|
76
86
|
"@tanstack/react-query": "^5.67.1",
|
|
77
87
|
"@tanstack/react-query-devtools": "^5.67.1",
|
|
88
|
+
"@uiw/codemirror-extensions-langs": "^4.23.10",
|
|
89
|
+
"@uiw/codemirror-theme-basic": "^4.23.10",
|
|
90
|
+
"@uiw/react-codemirror": "^4.23.10",
|
|
78
91
|
"date-fns": "^4.1.0",
|
|
79
|
-
"dmg-builder": "
|
|
80
|
-
"dotenv": "^16.4.7",
|
|
92
|
+
"dmg-builder": "26.0.12",
|
|
81
93
|
"electron-builder-squirrel-windows": "26.0.12",
|
|
82
94
|
"electron-debug": "^3.2.0",
|
|
83
95
|
"electron-log": "^4.4.8",
|
|
84
96
|
"electron-updater": "^6.1.4",
|
|
85
97
|
"html-react-parser": "^5.2.2",
|
|
98
|
+
"jwt-decode": "^4.0.0",
|
|
86
99
|
"katex": "^0.16.21",
|
|
100
|
+
"keytar": "^7.9.0",
|
|
101
|
+
"posthog-js": "^1.235.0",
|
|
102
|
+
"posthog-node": "^4.11.3",
|
|
87
103
|
"react": "^18.3.1",
|
|
88
104
|
"react-dom": "^18.3.1",
|
|
89
105
|
"react-error-boundary": "^5.0.0",
|
|
@@ -91,6 +107,7 @@
|
|
|
91
107
|
"react-router-dom": "^6.16.0",
|
|
92
108
|
"react-syntax-highlighter": "^15.6.1",
|
|
93
109
|
"react-toastify": "^11.0.5",
|
|
110
|
+
"recharts": "^2.15.3",
|
|
94
111
|
"rehype-katex": "^7.0.1",
|
|
95
112
|
"remark-gfm": "^4.0.1",
|
|
96
113
|
"remark-math": "^6.0.0",
|
|
@@ -109,15 +126,16 @@
|
|
|
109
126
|
"@electron/notarize": "^2.5.0",
|
|
110
127
|
"@storybook/addon-essentials": "^8.6.4",
|
|
111
128
|
"@storybook/addon-interactions": "^8.6.4",
|
|
112
|
-
"@storybook/addon-onboarding": "^8.6.4",
|
|
113
129
|
"@storybook/blocks": "^8.6.4",
|
|
114
130
|
"@storybook/react": "^8.6.4",
|
|
115
131
|
"@storybook/react-vite": "^8.6.4",
|
|
116
132
|
"@storybook/test": "^8.6.4",
|
|
117
133
|
"@types/react": "18.3.18",
|
|
118
134
|
"@types/react-dom": "18.3.5",
|
|
135
|
+
"@types/react-syntax-highlighter": "^15.5.13",
|
|
119
136
|
"@vitejs/plugin-react": "^4.3.4",
|
|
120
|
-
"
|
|
137
|
+
"dotenv": "^16.5.0",
|
|
138
|
+
"electron": "^25.9.8",
|
|
121
139
|
"electron-builder": "^26.0.12",
|
|
122
140
|
"electron-vite": "^3.0.0",
|
|
123
141
|
"esbuild": "^0.25.1",
|
|
@@ -141,9 +159,14 @@
|
|
|
141
159
|
"build": {
|
|
142
160
|
"appId": "com.local-operator",
|
|
143
161
|
"productName": "Local Operator",
|
|
144
|
-
"copyright": "Copyright © 2025
|
|
162
|
+
"copyright": "Copyright © 2025 Radient Inc.",
|
|
145
163
|
"asar": true,
|
|
146
|
-
"files": [
|
|
164
|
+
"files": [
|
|
165
|
+
"out/**/*",
|
|
166
|
+
"bin/**/*",
|
|
167
|
+
"LICENSE",
|
|
168
|
+
"README.md"
|
|
169
|
+
],
|
|
147
170
|
"directories": {
|
|
148
171
|
"output": "dist",
|
|
149
172
|
"buildResources": "build"
|
|
@@ -152,7 +175,9 @@
|
|
|
152
175
|
{
|
|
153
176
|
"from": "resources/python",
|
|
154
177
|
"to": "python",
|
|
155
|
-
"filter": [
|
|
178
|
+
"filter": [
|
|
179
|
+
"**/*"
|
|
180
|
+
]
|
|
156
181
|
}
|
|
157
182
|
],
|
|
158
183
|
"afterSign": "scripts/notarize.js",
|
|
@@ -166,11 +191,15 @@
|
|
|
166
191
|
"target": [
|
|
167
192
|
{
|
|
168
193
|
"target": "dmg",
|
|
169
|
-
"arch": [
|
|
194
|
+
"arch": [
|
|
195
|
+
"universal"
|
|
196
|
+
]
|
|
170
197
|
},
|
|
171
198
|
{
|
|
172
199
|
"target": "zip",
|
|
173
|
-
"arch": [
|
|
200
|
+
"arch": [
|
|
201
|
+
"universal"
|
|
202
|
+
]
|
|
174
203
|
}
|
|
175
204
|
],
|
|
176
205
|
"artifactName": "${name}-${version}-${arch}.${ext}",
|
|
@@ -199,7 +228,10 @@
|
|
|
199
228
|
"target": [
|
|
200
229
|
{
|
|
201
230
|
"target": "nsis",
|
|
202
|
-
"arch": [
|
|
231
|
+
"arch": [
|
|
232
|
+
"x64",
|
|
233
|
+
"arm64"
|
|
234
|
+
]
|
|
203
235
|
}
|
|
204
236
|
],
|
|
205
237
|
"artifactName": "${name}-setup-${version}-${arch}.${ext}",
|
|
@@ -239,10 +271,16 @@
|
|
|
239
271
|
}
|
|
240
272
|
},
|
|
241
273
|
"deb": {
|
|
242
|
-
"depends": [
|
|
274
|
+
"depends": [
|
|
275
|
+
"python3.12-full",
|
|
276
|
+
"python3.12-venv"
|
|
277
|
+
]
|
|
243
278
|
},
|
|
244
279
|
"rpm": {
|
|
245
|
-
"depends": [
|
|
280
|
+
"depends": [
|
|
281
|
+
"python3.12-full",
|
|
282
|
+
"python3.12-venv"
|
|
283
|
+
]
|
|
246
284
|
},
|
|
247
285
|
"publish": [
|
|
248
286
|
{
|