local-operator-ui 0.1.0-beta.1
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/LICENSE +21 -0
- package/README.md +306 -0
- package/out/main/bytecode-loader.cjs +72 -0
- package/out/main/index.js +3 -0
- package/out/main/index.jsc +0 -0
- package/out/preload/bytecode-loader.cjs +72 -0
- package/out/preload/index.js +3 -0
- package/out/preload/index.jsc +0 -0
- package/out/renderer/assets/RobotoMono-Bold-CA4NrfZm.ttf +0 -0
- package/out/renderer/assets/RobotoMono-Regular-BCiLwUa1.ttf +0 -0
- package/out/renderer/assets/icon-ngVHF_bZ.png +0 -0
- package/out/renderer/assets/index-CasTLPHC.js +115255 -0
- package/out/renderer/assets/index-CueJ1--J.css +815 -0
- package/out/renderer/index.html +18 -0
- package/package.json +96 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html>
|
|
3
|
+
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="UTF-8" />
|
|
6
|
+
<title>Local Operator</title>
|
|
7
|
+
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
|
|
8
|
+
<meta http-equiv="Content-Security-Policy"
|
|
9
|
+
content="default-src 'self'; connect-src 'self' http://localhost:1111; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; font-src 'self'" />
|
|
10
|
+
<script type="module" crossorigin src="./assets/index-CasTLPHC.js"></script>
|
|
11
|
+
<link rel="stylesheet" crossorigin href="./assets/index-CueJ1--J.css">
|
|
12
|
+
</head>
|
|
13
|
+
|
|
14
|
+
<body>
|
|
15
|
+
<div id="app"></div>
|
|
16
|
+
</body>
|
|
17
|
+
|
|
18
|
+
</html>
|
package/package.json
ADDED
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "local-operator-ui",
|
|
3
|
+
"version": "0.1.0-beta.1",
|
|
4
|
+
"description": "User interface for the Local Operator agent environment",
|
|
5
|
+
"main": "./out/main/index.js",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": {
|
|
8
|
+
"name": "Damian Tran",
|
|
9
|
+
"email": "damianvtran@gmail.com",
|
|
10
|
+
"url": "https://github.com/damianvtran"
|
|
11
|
+
},
|
|
12
|
+
"contributors": [
|
|
13
|
+
{
|
|
14
|
+
"name": "Damian Tran",
|
|
15
|
+
"email": "damianvtran@gmail.com",
|
|
16
|
+
"url": "https://github.com/damianvtran"
|
|
17
|
+
}
|
|
18
|
+
],
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/damianvtran/local-operator-ui.git"
|
|
22
|
+
},
|
|
23
|
+
"homepage": "https://github.com/damianvtran/local-operator-ui#readme",
|
|
24
|
+
"bugs": {
|
|
25
|
+
"url": "https://github.com/damianvtran/local-operator-ui/issues"
|
|
26
|
+
},
|
|
27
|
+
"keywords": ["local-operator", "agent", "ui", "electron", "react"],
|
|
28
|
+
"files": ["out", "LICENSE", "README.md"],
|
|
29
|
+
"publishConfig": {
|
|
30
|
+
"access": "public"
|
|
31
|
+
},
|
|
32
|
+
"scripts": {
|
|
33
|
+
"start": "electron-vite preview",
|
|
34
|
+
"dev": "electron-vite dev",
|
|
35
|
+
"prebuild": "electron-vite build",
|
|
36
|
+
"build": "electron-vite build",
|
|
37
|
+
"lint": "npx @biomejs/biome check src",
|
|
38
|
+
"lint:fix": "npx @biomejs/biome check --apply src",
|
|
39
|
+
"format": "npx @biomejs/biome format src",
|
|
40
|
+
"format:fix": "npx @biomejs/biome format --write src",
|
|
41
|
+
"prepublishOnly": "npm run build"
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"@electron-toolkit/utils": "^4.0.0",
|
|
45
|
+
"@emotion/react": "^11.14.0",
|
|
46
|
+
"@emotion/styled": "^11.14.0",
|
|
47
|
+
"@fortawesome/fontawesome-svg-core": "^6.7.2",
|
|
48
|
+
"@fortawesome/free-brands-svg-icons": "^6.7.2",
|
|
49
|
+
"@fortawesome/free-solid-svg-icons": "^6.7.2",
|
|
50
|
+
"@fortawesome/react-fontawesome": "^0.2.2",
|
|
51
|
+
"@mui/material": "^6.4.2",
|
|
52
|
+
"@tanstack/react-query": "^5.67.1",
|
|
53
|
+
"@tanstack/react-query-devtools": "^5.67.1",
|
|
54
|
+
"date-fns": "^4.1.0",
|
|
55
|
+
"electron": "^25.3.1",
|
|
56
|
+
"electron-debug": "^3.2.0",
|
|
57
|
+
"electron-log": "^4.4.8",
|
|
58
|
+
"electron-updater": "^6.1.4",
|
|
59
|
+
"react-error-boundary": "^5.0.0",
|
|
60
|
+
"react-markdown": "^10.1.0",
|
|
61
|
+
"react-syntax-highlighter": "^15.6.1",
|
|
62
|
+
"react-toastify": "^11.0.5",
|
|
63
|
+
"styled-components": "^6.1.14",
|
|
64
|
+
"uuid": "^11.1.0",
|
|
65
|
+
"zod": "^3.24.2",
|
|
66
|
+
"zustand": "^5.0.3"
|
|
67
|
+
},
|
|
68
|
+
"devDependencies": {
|
|
69
|
+
"@biomejs/biome": "^1.9.4",
|
|
70
|
+
"@electron-toolkit/preload": "^3.0.1",
|
|
71
|
+
"@electron-toolkit/tsconfig": "^1.0.1",
|
|
72
|
+
"@types/react": "18.3.18",
|
|
73
|
+
"@types/react-dom": "18.3.5",
|
|
74
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
75
|
+
"electron-vite": "^3.0.0",
|
|
76
|
+
"eslint": "^9.17.0",
|
|
77
|
+
"eslint-plugin-react-hooks": "^5.0.0",
|
|
78
|
+
"eslint-plugin-react-refresh": "^0.4.16",
|
|
79
|
+
"jest": "^29.7.0",
|
|
80
|
+
"react": "^18.3.1",
|
|
81
|
+
"react-dom": "^18.3.1",
|
|
82
|
+
"react-router-dom": "^6.16.0",
|
|
83
|
+
"tsc": "^2.0.4",
|
|
84
|
+
"typescript": "^5.8.2",
|
|
85
|
+
"typescript-eslint": "^8.18.2",
|
|
86
|
+
"vite": "^6.2.0",
|
|
87
|
+
"vite-tsconfig-paths": "^5.1.4"
|
|
88
|
+
},
|
|
89
|
+
"peerDependencies": {
|
|
90
|
+
"react": ">=18.0.0",
|
|
91
|
+
"react-dom": ">=18.0.0"
|
|
92
|
+
},
|
|
93
|
+
"engines": {
|
|
94
|
+
"node": ">=22.13.1"
|
|
95
|
+
}
|
|
96
|
+
}
|