@elaraai/e3-ui-cli 1.0.28
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/CLA.md +26 -0
- package/CONTRIBUTING.md +28 -0
- package/LICENSE.md +31 -0
- package/README.md +158 -0
- package/bin/e3-ui.mjs +13 -0
- package/dist/app/assets/dm-sans-latin-ext-wght-normal-BOFOeGcA.woff2 +0 -0
- package/dist/app/assets/dm-sans-latin-wght-normal-Xz1IZZA0.woff2 +0 -0
- package/dist/app/assets/engine-Daqj4eDD-BQb68g_1.js +4 -0
- package/dist/app/assets/index-30g1JIHt.js +2255 -0
- package/dist/app/assets/index-CYR-0Grb.css +1 -0
- package/dist/app/assets/inter-tight-cyrillic-ext-wght-normal-okcGN4Nq.woff2 +0 -0
- package/dist/app/assets/inter-tight-cyrillic-wght-normal-BS41q_Tv.woff2 +0 -0
- package/dist/app/assets/inter-tight-greek-ext-wght-normal-DQgQPNk4.woff2 +0 -0
- package/dist/app/assets/inter-tight-greek-wght-normal-sS1B39LI.woff2 +0 -0
- package/dist/app/assets/inter-tight-latin-ext-wght-normal-B4u9PlvR.woff2 +0 -0
- package/dist/app/assets/inter-tight-latin-wght-normal-DX-nOvPD.woff2 +0 -0
- package/dist/app/assets/inter-tight-vietnamese-wght-normal-TKKdAiBA.woff2 +0 -0
- package/dist/app/assets/jetbrains-mono-cyrillic-wght-normal-D73BlboJ.woff2 +0 -0
- package/dist/app/assets/jetbrains-mono-greek-wght-normal-Bw9x6K1M.woff2 +0 -0
- package/dist/app/assets/jetbrains-mono-latin-ext-wght-normal-DBQx-q_a.woff2 +0 -0
- package/dist/app/assets/jetbrains-mono-latin-wght-normal-B9CIFXIH.woff2 +0 -0
- package/dist/app/assets/jetbrains-mono-vietnamese-wght-normal-Bt-aOZkq.woff2 +0 -0
- package/dist/app/index.html +13 -0
- package/dist/browser.d.ts +88 -0
- package/dist/browser.d.ts.map +1 -0
- package/dist/browser.js +249 -0
- package/dist/browser.js.map +1 -0
- package/dist/capture.d.ts +80 -0
- package/dist/capture.d.ts.map +1 -0
- package/dist/capture.js +275 -0
- package/dist/capture.js.map +1 -0
- package/dist/cli.d.ts +6 -0
- package/dist/cli.d.ts.map +1 -0
- package/dist/cli.js +70 -0
- package/dist/cli.js.map +1 -0
- package/dist/commands/shot.d.ts +42 -0
- package/dist/commands/shot.d.ts.map +1 -0
- package/dist/commands/shot.js +134 -0
- package/dist/commands/shot.js.map +1 -0
- package/dist/e3-server.d.ts +21 -0
- package/dist/e3-server.d.ts.map +1 -0
- package/dist/e3-server.js +34 -0
- package/dist/e3-server.js.map +1 -0
- package/dist/index.d.ts +17 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +17 -0
- package/dist/index.js.map +1 -0
- package/dist/load-source.d.ts +21 -0
- package/dist/load-source.d.ts.map +1 -0
- package/dist/load-source.js +163 -0
- package/dist/load-source.js.map +1 -0
- package/dist/payload.d.ts +26 -0
- package/dist/payload.d.ts.map +1 -0
- package/dist/payload.js +87 -0
- package/dist/payload.js.map +1 -0
- package/dist/render.d.ts +80 -0
- package/dist/render.d.ts.map +1 -0
- package/dist/render.js +79 -0
- package/dist/render.js.map +1 -0
- package/dist/shot-payload.d.ts +31 -0
- package/dist/shot-payload.d.ts.map +1 -0
- package/dist/shot-payload.js +6 -0
- package/dist/shot-payload.js.map +1 -0
- package/package.json +82 -0
package/package.json
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@elaraai/e3-ui-cli",
|
|
3
|
+
"version": "1.0.28",
|
|
4
|
+
"description": "Render east-ui / e3-ui components to PNG from the command line (e3-ui shot)",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"bin": {
|
|
8
|
+
"e3-ui": "./bin/e3-ui.mjs"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"bin",
|
|
12
|
+
"dist",
|
|
13
|
+
"!dist/**/*.spec.*",
|
|
14
|
+
"README.md",
|
|
15
|
+
"LICENSE.md",
|
|
16
|
+
"CONTRIBUTING.md",
|
|
17
|
+
"CLA.md"
|
|
18
|
+
],
|
|
19
|
+
"keywords": [
|
|
20
|
+
"east",
|
|
21
|
+
"elara",
|
|
22
|
+
"e3",
|
|
23
|
+
"ui",
|
|
24
|
+
"cli",
|
|
25
|
+
"screenshot",
|
|
26
|
+
"png",
|
|
27
|
+
"render"
|
|
28
|
+
],
|
|
29
|
+
"author": "Elara AI Pty Ltd",
|
|
30
|
+
"license": "AGPL-3.0-or-later",
|
|
31
|
+
"type": "module",
|
|
32
|
+
"engines": {
|
|
33
|
+
"node": ">=22.0.0"
|
|
34
|
+
},
|
|
35
|
+
"repository": {
|
|
36
|
+
"type": "git",
|
|
37
|
+
"url": "git+https://github.com/elaraai/east-workspace.git",
|
|
38
|
+
"directory": "libs/east-ui/packages/e3-ui-cli"
|
|
39
|
+
},
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"commander": "^12.0.0",
|
|
42
|
+
"esbuild": "^0.27.2",
|
|
43
|
+
"playwright-core": "~1.59.0",
|
|
44
|
+
"@elaraai/e3-api-server": "1.0.28"
|
|
45
|
+
},
|
|
46
|
+
"peerDependencies": {
|
|
47
|
+
"@elaraai/east": "1.0.28"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@chakra-ui/react": "^3.0.0",
|
|
51
|
+
"@fontsource-variable/dm-sans": "^5.2.0",
|
|
52
|
+
"@fontsource-variable/inter-tight": "^5.2.0",
|
|
53
|
+
"@fontsource-variable/jetbrains-mono": "^5.2.0",
|
|
54
|
+
"@tanstack/react-query": "^5.62.0",
|
|
55
|
+
"@types/node": "^22.0.0",
|
|
56
|
+
"@types/react": "^19.0.0",
|
|
57
|
+
"@types/react-dom": "^19.0.0",
|
|
58
|
+
"@typescript-eslint/eslint-plugin": "^8.47.0",
|
|
59
|
+
"@typescript-eslint/parser": "^8.47.0",
|
|
60
|
+
"@vitejs/plugin-react": "^4.3.0",
|
|
61
|
+
"eslint": "^9.0.0",
|
|
62
|
+
"eslint-plugin-headers": "^1.3.3",
|
|
63
|
+
"react": "^19.0.0",
|
|
64
|
+
"react-dom": "^19.0.0",
|
|
65
|
+
"typescript": "~5.9.2",
|
|
66
|
+
"vite": "^6.0.0",
|
|
67
|
+
"@elaraai/east-ui": "1.0.28",
|
|
68
|
+
"@elaraai/e3": "1.0.28",
|
|
69
|
+
"@elaraai/east-ui-components": "1.0.28",
|
|
70
|
+
"@elaraai/e3-api-client": "1.0.28",
|
|
71
|
+
"@elaraai/e3-types": "1.0.28",
|
|
72
|
+
"@elaraai/e3-ui": "1.0.28",
|
|
73
|
+
"@elaraai/e3-ui-components": "1.0.28"
|
|
74
|
+
},
|
|
75
|
+
"scripts": {
|
|
76
|
+
"build": "tsc && tsc -p app/tsconfig.json && node scripts/build-app.mjs",
|
|
77
|
+
"test": "npm run build && node --enable-source-maps --test-reporter=spec --test 'dist/**/*.spec.js'",
|
|
78
|
+
"lint": "eslint .",
|
|
79
|
+
"lint:fix": "eslint . --fix",
|
|
80
|
+
"dev": "npm run build && node --enable-source-maps dist/cli.js"
|
|
81
|
+
}
|
|
82
|
+
}
|