@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/package.json ADDED
@@ -0,0 +1,91 @@
1
+ {
2
+ "name": "@goplasmatic/datalogic-ui",
3
+ "private": false,
4
+ "version": "0.1.0",
5
+ "type": "module",
6
+ "description": "DataLogic Debugger - Visual JSONLogic Debugger & Editor for debugging and visualizing JSONLogic expressions",
7
+ "keywords": [
8
+ "JSONLogic Debugger",
9
+ "DataLogic Debugger",
10
+ "JSONLogic",
11
+ "DataLogic",
12
+ "visual debugger",
13
+ "logic editor",
14
+ "react",
15
+ "flow diagram"
16
+ ],
17
+ "homepage": "https://goplasmatic.github.io/datalogic-ui/",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "https://github.com/GoPlasmatic/datalogic-ui"
21
+ },
22
+ "author": "Plasmatic",
23
+ "license": "MIT",
24
+ "main": "./dist/index.cjs",
25
+ "module": "./dist/index.js",
26
+ "types": "./dist/index.d.ts",
27
+ "exports": {
28
+ ".": {
29
+ "import": {
30
+ "types": "./dist/index.d.ts",
31
+ "default": "./dist/index.js"
32
+ },
33
+ "require": {
34
+ "types": "./dist/index.d.ts",
35
+ "default": "./dist/index.cjs"
36
+ }
37
+ },
38
+ "./styles.css": "./dist/styles.css"
39
+ },
40
+ "files": [
41
+ "dist",
42
+ "README.md",
43
+ "LICENSE"
44
+ ],
45
+ "sideEffects": [
46
+ "**/*.css"
47
+ ],
48
+ "scripts": {
49
+ "dev": "vite",
50
+ "build": "tsc -b && vite build",
51
+ "build:lib": "vite build --config vite.lib.config.ts",
52
+ "lint": "eslint .",
53
+ "preview": "vite preview",
54
+ "prepublishOnly": "npm run build:lib",
55
+ "release:patch": "npm version patch && npm publish --access public",
56
+ "release:minor": "npm version minor && npm publish --access public",
57
+ "release:major": "npm version major && npm publish --access public"
58
+ },
59
+ "dependencies": {
60
+ "@dagrejs/dagre": "^1.1.8",
61
+ "@goplasmatic/datalogic": "^4.0.6",
62
+ "lucide-react": "^0.562.0",
63
+ "uuid": "^13.0.0"
64
+ },
65
+ "peerDependencies": {
66
+ "@xyflow/react": "^12.0.0",
67
+ "react": "^18.0.0 || ^19.0.0",
68
+ "react-dom": "^18.0.0 || ^19.0.0"
69
+ },
70
+ "devDependencies": {
71
+ "@eslint/js": "^9.39.1",
72
+ "@types/node": "^24.10.1",
73
+ "@types/react": "^19.2.5",
74
+ "@types/react-dom": "^19.2.3",
75
+ "@types/uuid": "^10.0.0",
76
+ "@vitejs/plugin-react": "^5.1.1",
77
+ "@xyflow/react": "^12.10.0",
78
+ "eslint": "^9.39.1",
79
+ "eslint-plugin-react-hooks": "^7.0.1",
80
+ "eslint-plugin-react-refresh": "^0.4.24",
81
+ "globals": "^16.5.0",
82
+ "react": "^19.2.0",
83
+ "react-dom": "^19.2.0",
84
+ "typescript": "~5.9.3",
85
+ "typescript-eslint": "^8.46.4",
86
+ "vite": "^7.2.4",
87
+ "vite-plugin-dts": "^4.5.4",
88
+ "vite-plugin-top-level-await": "^1.6.0",
89
+ "vite-plugin-wasm": "^3.5.0"
90
+ }
91
+ }