@goplasmatic/datalogic-ui 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/LICENSE +201 -0
- package/README.md +198 -0
- package/dist/datalogic_wasm-r9jsW6oT.js +314 -0
- package/dist/datalogic_wasm-r9jsW6oT.js.map +1 -0
- package/dist/datalogic_wasm-vS4KZjmk.cjs +410 -0
- package/dist/datalogic_wasm-vS4KZjmk.cjs.map +1 -0
- package/dist/demo.gif +0 -0
- package/dist/index.cjs +9007 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.ts +166 -0
- package/dist/index.js +8791 -0
- package/dist/index.js.map +1 -0
- package/dist/manifest.json +11 -0
- package/dist/robots.txt +4 -0
- package/dist/styles.css +1987 -0
- package/package.json +91 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "DataLogic Debugger",
|
|
3
|
+
"short_name": "DataLogic",
|
|
4
|
+
"description": "Visual JSONLogic Debugger & Editor - Debug, visualize, and understand complex JSONLogic expressions with an interactive node-based flow diagram.",
|
|
5
|
+
"start_url": "/",
|
|
6
|
+
"display": "standalone",
|
|
7
|
+
"background_color": "#111827",
|
|
8
|
+
"theme_color": "#1f2937",
|
|
9
|
+
"categories": ["developer tools", "productivity", "utilities"],
|
|
10
|
+
"keywords": ["JSONLogic Debugger", "DataLogic Debugger", "JSONLogic", "DataLogic", "visual debugger", "logic editor"]
|
|
11
|
+
}
|
package/dist/robots.txt
ADDED