orquesta-embed 0.1.0
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 +97 -0
- package/dist/components/Deployments.d.ts +7 -0
- package/dist/components/ElementInspector.d.ts +6 -0
- package/dist/components/EmbedPanel.d.ts +16 -0
- package/dist/components/LogStream.d.ts +7 -0
- package/dist/components/OrquestaEmbed.d.ts +7 -0
- package/dist/components/PromptInput.d.ts +15 -0
- package/dist/components/Timeline.d.ts +8 -0
- package/dist/components/ui/Badge.d.ts +14 -0
- package/dist/components/ui/Button.d.ts +9 -0
- package/dist/components/ui/Input.d.ts +12 -0
- package/dist/components/ui/Tabs.d.ts +27 -0
- package/dist/components/ui/index.d.ts +4 -0
- package/dist/core/client.d.ts +40 -0
- package/dist/core/config.d.ts +87 -0
- package/dist/core/console-capture.d.ts +19 -0
- package/dist/core/element-selector.d.ts +23 -0
- package/dist/core/network-capture.d.ts +20 -0
- package/dist/core/state.d.ts +59 -0
- package/dist/core/storage.d.ts +25 -0
- package/dist/embed.css +1 -0
- package/dist/index.cjs +1 -0
- package/dist/index.d.ts +20 -0
- package/dist/index.js +1 -0
- package/dist/styles/embed-inline.d.ts +1 -0
- package/dist/vanilla/OrquestaWidget.d.ts +36 -0
- package/dist/vanilla/renderer.d.ts +11 -0
- package/dist/vanilla.d.ts +14 -0
- package/dist/vanilla.js +1 -0
- package/dist/vanilla.min.js +1 -0
- package/package.json +73 -0
package/package.json
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "orquesta-embed",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Embed Orquesta UI into any production website",
|
|
6
|
+
"main": "dist/index.cjs",
|
|
7
|
+
"module": "dist/index.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./dist/index.js",
|
|
12
|
+
"require": "./dist/index.cjs",
|
|
13
|
+
"types": "./dist/index.d.ts"
|
|
14
|
+
},
|
|
15
|
+
"./vanilla": {
|
|
16
|
+
"import": "./dist/vanilla.js",
|
|
17
|
+
"require": "./dist/vanilla.cjs"
|
|
18
|
+
},
|
|
19
|
+
"./styles.css": "./dist/embed.css"
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"dist",
|
|
23
|
+
"README.md"
|
|
24
|
+
],
|
|
25
|
+
"scripts": {
|
|
26
|
+
"build": "rollup -c",
|
|
27
|
+
"dev": "rollup -c -w",
|
|
28
|
+
"clean": "rm -rf dist",
|
|
29
|
+
"prepublishOnly": "npm run build"
|
|
30
|
+
},
|
|
31
|
+
"keywords": [
|
|
32
|
+
"orquesta",
|
|
33
|
+
"embed",
|
|
34
|
+
"ai",
|
|
35
|
+
"claude",
|
|
36
|
+
"production",
|
|
37
|
+
"monitoring"
|
|
38
|
+
],
|
|
39
|
+
"author": "Orquesta",
|
|
40
|
+
"license": "MIT",
|
|
41
|
+
"repository": {
|
|
42
|
+
"type": "git",
|
|
43
|
+
"url": "https://github.com/orquesta/orquesta-embed"
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"@supabase/supabase-js": "^2.39.0"
|
|
47
|
+
},
|
|
48
|
+
"peerDependencies": {
|
|
49
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
50
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
51
|
+
},
|
|
52
|
+
"peerDependenciesMeta": {
|
|
53
|
+
"react": {
|
|
54
|
+
"optional": true
|
|
55
|
+
},
|
|
56
|
+
"react-dom": {
|
|
57
|
+
"optional": true
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"devDependencies": {
|
|
61
|
+
"@rollup/plugin-commonjs": "^28.0.0",
|
|
62
|
+
"@rollup/plugin-json": "^6.1.0",
|
|
63
|
+
"@rollup/plugin-node-resolve": "^16.0.0",
|
|
64
|
+
"@rollup/plugin-replace": "^6.0.0",
|
|
65
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
66
|
+
"@rollup/plugin-typescript": "^12.1.0",
|
|
67
|
+
"@types/react": "^18.2.0",
|
|
68
|
+
"@types/react-dom": "^18.2.0",
|
|
69
|
+
"rollup": "^4.29.0",
|
|
70
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
71
|
+
"typescript": "^5.3.0"
|
|
72
|
+
}
|
|
73
|
+
}
|