local-operator-ui 0.4.2 → 0.4.4
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 +1 -1
- package/out/main/index.jsc +0 -0
- package/out/preload/index.jsc +0 -0
- package/out/renderer/assets/{error-boundary-HK_94N6W.js → error-boundary-BSN19Qr4.js} +207 -147
- package/out/renderer/assets/{index-DHvoVezG.js → index-ChdP-bmN.js} +538 -271
- package/out/renderer/assets/{installer-XvyKuNSZ.js → installer-BKPh1hoG.js} +1 -1
- package/out/renderer/index.html +2 -2
- package/out/renderer/installer.html +2 -2
- package/package.json +24 -29
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { s as styled,
|
|
1
|
+
import { s as styled, a0 as Box, aE as keyframes, J as Typography, a as reactExports, j as jsxRuntimeExports, t as useTheme, Z as LinearProgress, $ as Button, bD as ThemeProvider, b8 as darkTheme, bC as CssBaseline, bE as ReactDOM, p as React, bF as ErrorBoundary } from "./error-boundary-BSN19Qr4.js";
|
|
2
2
|
const AppContainer = styled(Box)(() => ({
|
|
3
3
|
display: "flex",
|
|
4
4
|
height: "100vh",
|
package/out/renderer/index.html
CHANGED
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
|
|
9
9
|
<meta http-equiv="Content-Security-Policy"
|
|
10
10
|
content="default-src 'self'; connect-src 'self' http://localhost:1111 http://127.0.0.1:1111 ws://localhost:1111 ws://127.0.0.1:1111; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data: http://localhost:1111 http://127.0.0.1:1111; media-src 'self' http://localhost:1111 http://127.0.0.1:1111; font-src 'self'" />
|
|
11
|
-
<script type="module" crossorigin src="./assets/index-
|
|
12
|
-
<link rel="modulepreload" crossorigin href="./assets/error-boundary-
|
|
11
|
+
<script type="module" crossorigin src="./assets/index-ChdP-bmN.js"></script>
|
|
12
|
+
<link rel="modulepreload" crossorigin href="./assets/error-boundary-BSN19Qr4.js">
|
|
13
13
|
<link rel="stylesheet" crossorigin href="./assets/error-boundary-B9KBGB-g.css">
|
|
14
14
|
<link rel="stylesheet" crossorigin href="./assets/index-94BTFuhu.css">
|
|
15
15
|
</head>
|
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
|
|
9
9
|
<meta http-equiv="Content-Security-Policy"
|
|
10
10
|
content="default-src 'self'; connect-src 'self' http://localhost:1111 http://127.0.0.1:1111; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data: http://localhost:1111 http://127.0.0.1:1111; media-src 'self' http://localhost:1111 http://127.0.0.1:1111; font-src 'self'" />
|
|
11
|
-
<script type="module" crossorigin src="./assets/installer-
|
|
12
|
-
<link rel="modulepreload" crossorigin href="./assets/error-boundary-
|
|
11
|
+
<script type="module" crossorigin src="./assets/installer-BKPh1hoG.js"></script>
|
|
12
|
+
<link rel="modulepreload" crossorigin href="./assets/error-boundary-BSN19Qr4.js">
|
|
13
13
|
<link rel="stylesheet" crossorigin href="./assets/error-boundary-B9KBGB-g.css">
|
|
14
14
|
</head>
|
|
15
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "local-operator-ui",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.4",
|
|
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",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
],
|
|
23
23
|
"repository": {
|
|
24
24
|
"type": "git",
|
|
25
|
-
"url": "
|
|
25
|
+
"url": "https://github.com/damianvtran/local-operator-ui.git"
|
|
26
26
|
},
|
|
27
27
|
"homepage": "https://github.com/damianvtran/local-operator-ui#readme",
|
|
28
28
|
"bugs": {
|
|
@@ -52,13 +52,13 @@
|
|
|
52
52
|
"format:fix": "npx @biomejs/biome format --write src",
|
|
53
53
|
"prepublishOnly": "npm run build",
|
|
54
54
|
"check-types": "tsc --noEmit",
|
|
55
|
-
"pack": "
|
|
56
|
-
"dist": "
|
|
57
|
-
"dist:mac": "
|
|
58
|
-
"dist:win": "
|
|
59
|
-
"dist:linux": "
|
|
60
|
-
"dist:all": "
|
|
61
|
-
"release": "
|
|
55
|
+
"pack": "pnpm run build && electron-builder --dir",
|
|
56
|
+
"dist": "pnpm run build && electron-builder",
|
|
57
|
+
"dist:mac": "pnpm run build && electron-builder --mac --publish never",
|
|
58
|
+
"dist:win": "pnpm run build && electron-builder --win --publish never",
|
|
59
|
+
"dist:linux": "pnpm run build && electron-builder --linux --publish never",
|
|
60
|
+
"dist:all": "pnpm run build && electron-builder -mwl --publish never",
|
|
61
|
+
"release": "pnpm run build && electron-builder --publish always",
|
|
62
62
|
"generate-icons": "node scripts/generate-icons.js",
|
|
63
63
|
"setup-python": "./scripts/setup-python-resource.sh",
|
|
64
64
|
"storybook": "storybook dev -p 6006",
|
|
@@ -116,21 +116,15 @@
|
|
|
116
116
|
"@types/react-dom": "18.3.5",
|
|
117
117
|
"@vitejs/plugin-react": "^4.3.4",
|
|
118
118
|
"electron": "^25.3.1",
|
|
119
|
-
"electron-builder": "^
|
|
119
|
+
"electron-builder": "^26.0.12",
|
|
120
120
|
"electron-vite": "^3.0.0",
|
|
121
121
|
"esbuild": "^0.25.1",
|
|
122
|
-
"eslint": "^9.17.0",
|
|
123
|
-
"eslint-plugin-react-hooks": "^5.0.0",
|
|
124
|
-
"eslint-plugin-react-refresh": "^0.4.16",
|
|
125
|
-
"eslint-plugin-storybook": "^0.11.4",
|
|
126
122
|
"icns-lib": "^1.0.1",
|
|
127
123
|
"jest": "^29.7.0",
|
|
128
124
|
"prismjs": "^1.30.0",
|
|
129
125
|
"sharp": "^0.33.2",
|
|
130
126
|
"storybook": "^8.6.4",
|
|
131
|
-
"tsc": "^2.0.4",
|
|
132
127
|
"typescript": "^5.8.2",
|
|
133
|
-
"typescript-eslint": "^8.18.2",
|
|
134
128
|
"vite": "^6.2.0",
|
|
135
129
|
"vite-tsconfig-paths": "^5.1.4",
|
|
136
130
|
"yaml": "^2.7.0"
|
|
@@ -234,9 +228,11 @@
|
|
|
234
228
|
],
|
|
235
229
|
"artifactName": "${name}-${version}-${arch}.${ext}",
|
|
236
230
|
"desktop": {
|
|
237
|
-
"
|
|
238
|
-
|
|
239
|
-
|
|
231
|
+
"entry": {
|
|
232
|
+
"Name": "Local Operator",
|
|
233
|
+
"Comment": "AI Agent Assistants On Your Device",
|
|
234
|
+
"Categories": "ArtificialIntelligence"
|
|
235
|
+
}
|
|
240
236
|
}
|
|
241
237
|
},
|
|
242
238
|
"deb": {
|
|
@@ -245,16 +241,15 @@
|
|
|
245
241
|
"rpm": {
|
|
246
242
|
"depends": ["python3.12-full", "python3.12-venv"]
|
|
247
243
|
},
|
|
248
|
-
"publish":
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
244
|
+
"publish": [
|
|
245
|
+
{
|
|
246
|
+
"provider": "github",
|
|
247
|
+
"owner": "damianvtran",
|
|
248
|
+
"repo": "local-operator-ui",
|
|
249
|
+
"private": false,
|
|
250
|
+
"releaseType": "release"
|
|
251
|
+
}
|
|
252
|
+
],
|
|
255
253
|
"generateUpdatesFilesForAllChannels": true
|
|
256
|
-
},
|
|
257
|
-
"eslintConfig": {
|
|
258
|
-
"extends": ["plugin:storybook/recommended"]
|
|
259
254
|
}
|
|
260
255
|
}
|