local-operator-ui 0.3.1 → 0.3.3

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.
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "local-operator-ui",
3
- "version": "0.3.1",
3
+ "version": "0.3.3",
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": "damianvtran@gmail.com",
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": "damianvtran@gmail.com",
19
+ "email": "damian@local-operator.com",
20
20
  "url": "https://github.com/damianvtran"
21
21
  }
22
22
  ],
@@ -55,10 +55,11 @@
55
55
  "pack": "yarn build && electron-builder --dir",
56
56
  "dist": "yarn build && electron-builder",
57
57
  "dist:mac": "yarn build && electron-builder --mac --publish never",
58
- "dist:win": "yarn build && electron-builder --win --publish never",
58
+ "dist:win": "yarn build && electron-builder --win --publish never && yarn update-win-hashes",
59
59
  "dist:linux": "yarn build && electron-builder --linux --publish never",
60
- "dist:all": "yarn build && electron-builder -mwl --publish never",
61
- "release": "yarn build && electron-builder --publish always",
60
+ "dist:all": "yarn build && electron-builder -mwl --publish never && yarn update-win-hashes",
61
+ "release": "yarn build && electron-builder --publish always && yarn update-win-hashes",
62
+ "update-win-hashes": "node scripts/update-windows-hashes.js",
62
63
  "generate-icons": "node scripts/generate-icons.js",
63
64
  "setup-python": "./scripts/setup-python-resource.sh",
64
65
  "storybook": "storybook dev -p 6006",
@@ -132,7 +133,8 @@
132
133
  "typescript": "^5.8.2",
133
134
  "typescript-eslint": "^8.18.2",
134
135
  "vite": "^6.2.0",
135
- "vite-tsconfig-paths": "^5.1.4"
136
+ "vite-tsconfig-paths": "^5.1.4",
137
+ "yaml": "^2.7.0"
136
138
  },
137
139
  "peerDependencies": {
138
140
  "react": ">=18.0.0",
@@ -211,15 +213,34 @@
211
213
  },
212
214
  "linux": {
213
215
  "icon": "resources/icon-512x512.png",
214
- "category": "Development",
215
- "target": ["deb", "AppImage", "rpm"],
216
+ "category": "ArtificialIntelligence",
217
+ "target": [
218
+ {
219
+ "target": "deb",
220
+ "arch": "x64"
221
+ },
222
+ {
223
+ "target": "AppImage",
224
+ "arch": "x64"
225
+ },
226
+ {
227
+ "target": "rpm",
228
+ "arch": "x64"
229
+ }
230
+ ],
216
231
  "artifactName": "${name}-${version}-${arch}.${ext}",
217
232
  "desktop": {
218
233
  "Name": "Local Operator",
219
234
  "Comment": "AI Agent Assistants On Your Device",
220
- "Categories": "Development;Utility"
235
+ "Categories": "ArtificialIntelligence"
221
236
  }
222
237
  },
238
+ "deb": {
239
+ "depends": ["python3.12-full", "python3.12-venv"]
240
+ },
241
+ "rpm": {
242
+ "depends": ["python3.12-full", "python3.12-venv"]
243
+ },
223
244
  "publish": {
224
245
  "provider": "github",
225
246
  "owner": "damianvtran",