@robota-sdk/agent-web-ui 3.0.0-beta.64

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.
@@ -0,0 +1,13 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <title>Robota Monitor</title>
7
+ <script type="module" crossorigin src="/assets/index-CUJJsgxp.js"></script>
8
+ <link rel="stylesheet" crossorigin href="/assets/index-B2N-LjvM.css">
9
+ </head>
10
+ <body>
11
+ <div id="root"></div>
12
+ </body>
13
+ </html>
package/package.json ADDED
@@ -0,0 +1,69 @@
1
+ {
2
+ "name": "@robota-sdk/agent-web-ui",
3
+ "version": "3.0.0-beta.64",
4
+ "description": "Browser UI library for monitoring and controlling a running agent-cli session",
5
+ "type": "module",
6
+ "main": "dist/node/index.js",
7
+ "types": "dist/node/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/node/index.d.ts",
11
+ "import": "./dist/node/index.js",
12
+ "require": "./dist/node/index.cjs",
13
+ "default": "./dist/node/index.js"
14
+ },
15
+ "./client": {
16
+ "types": "./dist/browser/index.d.ts",
17
+ "import": "./dist/browser/index.js",
18
+ "default": "./dist/browser/index.js"
19
+ }
20
+ },
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "https://github.com/woojubb/robota.git"
24
+ },
25
+ "homepage": "https://robota.io/",
26
+ "bugs": {
27
+ "url": "https://github.com/woojubb/robota/issues"
28
+ },
29
+ "files": [
30
+ "dist"
31
+ ],
32
+ "dependencies": {
33
+ "react-markdown": "^10.1.0",
34
+ "remark-gfm": "^4.0.1",
35
+ "@robota-sdk/agent-transport": "3.0.0-beta.64"
36
+ },
37
+ "peerDependencies": {
38
+ "react": ">=18"
39
+ },
40
+ "devDependencies": {
41
+ "@tailwindcss/vite": "^4.0.0",
42
+ "@types/react": "^19.2.14",
43
+ "@types/react-dom": "^19.0.0",
44
+ "@vitejs/plugin-react": "^4.0.0",
45
+ "react": "19.2.4",
46
+ "react-dom": "19.2.4",
47
+ "rimraf": "^5.0.5",
48
+ "tailwindcss": "^4.0.0",
49
+ "tsdown": "^0.22.0",
50
+ "typescript": "^5.3.3",
51
+ "vite": "^7.3.2",
52
+ "vitest": "^1.6.1"
53
+ },
54
+ "license": "MIT",
55
+ "publishConfig": {
56
+ "access": "public"
57
+ },
58
+ "scripts": {
59
+ "build": "tsdown",
60
+ "build:js": "tsdown --no-dts",
61
+ "build:types": "tsdown --dts",
62
+ "build:spa": "vite build --config vite.spa.config.ts",
63
+ "test": "vitest run --passWithNoTests",
64
+ "test:coverage": "vitest run --coverage --passWithNoTests",
65
+ "typecheck": "tsc --noEmit",
66
+ "lint": "eslint src/ --ext .ts,.tsx",
67
+ "clean": "rimraf dist"
68
+ }
69
+ }