@goplasmatic/dataflow-ui 2.0.4
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 +133 -0
- package/dist/dataflow-ui.css +5719 -0
- package/dist/datalogic_wasm-4utZNR2J-B5BvlAcC.cjs +364 -0
- package/dist/datalogic_wasm-4utZNR2J-DW6r1ZIK.js +363 -0
- package/dist/index.cjs +22060 -0
- package/dist/index.d.ts +722 -0
- package/dist/index.js +22060 -0
- package/package.json +72 -0
package/package.json
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@goplasmatic/dataflow-ui",
|
|
3
|
+
"version": "2.0.4",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "React visualization library for dataflow-rs workflow engine",
|
|
6
|
+
"author": "Plasmatic Engineering <shankar@goplasmatic.io>",
|
|
7
|
+
"main": "./dist/index.cjs",
|
|
8
|
+
"module": "./dist/index.js",
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"import": "./dist/index.js",
|
|
14
|
+
"require": "./dist/index.cjs"
|
|
15
|
+
},
|
|
16
|
+
"./styles.css": "./dist/dataflow-ui.css"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist",
|
|
20
|
+
"README.md",
|
|
21
|
+
"!dist/*.map"
|
|
22
|
+
],
|
|
23
|
+
"homepage": "https://github.com/GoPlasmatic/dataflow-rs",
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "https://github.com/GoPlasmatic/dataflow-rs",
|
|
27
|
+
"directory": "ui"
|
|
28
|
+
},
|
|
29
|
+
"bugs": {
|
|
30
|
+
"url": "https://github.com/GoPlasmatic/dataflow-rs/issues"
|
|
31
|
+
},
|
|
32
|
+
"license": "Apache-2.0",
|
|
33
|
+
"keywords": [
|
|
34
|
+
"workflow",
|
|
35
|
+
"dataflow",
|
|
36
|
+
"visualization",
|
|
37
|
+
"react",
|
|
38
|
+
"jsonlogic",
|
|
39
|
+
"typescript"
|
|
40
|
+
],
|
|
41
|
+
"scripts": {
|
|
42
|
+
"dev": "vite",
|
|
43
|
+
"build": "tsc && vite build",
|
|
44
|
+
"build:lib": "tsc && vite build --config vite.lib.config.ts",
|
|
45
|
+
"preview": "vite preview",
|
|
46
|
+
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
47
|
+
"prepublishOnly": "npm run build:lib",
|
|
48
|
+
"publish:npm": "npm run build:lib && npm publish --access public"
|
|
49
|
+
},
|
|
50
|
+
"peerDependencies": {
|
|
51
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
52
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
53
|
+
},
|
|
54
|
+
"dependencies": {
|
|
55
|
+
"@goplasmatic/dataflow-wasm": "^2.0.4",
|
|
56
|
+
"@goplasmatic/datalogic-ui": "^4.0.9",
|
|
57
|
+
"@monaco-editor/react": "^4.7.0",
|
|
58
|
+
"@xyflow/react": "^12.0.0",
|
|
59
|
+
"lucide-react": "^0.462.0"
|
|
60
|
+
},
|
|
61
|
+
"devDependencies": {
|
|
62
|
+
"@types/react": "^18.3.18",
|
|
63
|
+
"@types/react-dom": "^18.3.5",
|
|
64
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
65
|
+
"monaco-editor": "^0.55.1",
|
|
66
|
+
"react": "^18.3.1",
|
|
67
|
+
"react-dom": "^18.3.1",
|
|
68
|
+
"typescript": "^5.7.3",
|
|
69
|
+
"vite": "^6.0.7",
|
|
70
|
+
"vite-plugin-dts": "^4.4.0"
|
|
71
|
+
}
|
|
72
|
+
}
|