@prefecthq/prefab-ui-playground 0.0.0 → 0.16.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.
- package/README.md +7 -0
- package/package.json +18 -1
- package/playground.html +20205 -0
package/README.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# @prefecthq/prefab-ui-playground
|
|
2
|
+
|
|
3
|
+
Interactive playground for [Prefab](https://prefab.prefect.io) — runs Python in the browser via Pyodide.
|
|
4
|
+
|
|
5
|
+
This package contains the self-contained playground HTML. It is published automatically alongside the main `@prefecthq/prefab-ui` package and should not be installed directly.
|
|
6
|
+
|
|
7
|
+
If you're building with Prefab, see the [main package](https://www.npmjs.com/package/@prefecthq/prefab-ui).
|
package/package.json
CHANGED
|
@@ -1 +1,18 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"name": "@prefecthq/prefab-ui-playground",
|
|
3
|
+
"version": "0.16.3",
|
|
4
|
+
"description": "Interactive Prefab playground — runs Python in the browser via Pyodide.",
|
|
5
|
+
"homepage": "https://prefab.prefect.io",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/PrefectHQ/prefab.git",
|
|
9
|
+
"directory": "renderer"
|
|
10
|
+
},
|
|
11
|
+
"license": "Apache-2.0",
|
|
12
|
+
"files": [
|
|
13
|
+
"playground.html"
|
|
14
|
+
],
|
|
15
|
+
"publishConfig": {
|
|
16
|
+
"access": "public"
|
|
17
|
+
}
|
|
18
|
+
}
|