@boltic/swirl 1.0.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 +21 -0
- package/README.md +398 -0
- package/dist/favicon.ico +0 -0
- package/dist/index.d.ts +50 -0
- package/dist/style.css +1 -0
- package/dist/swirl.es.js +183864 -0
- package/dist/swirl.umd.js +654 -0
- package/package.json +157 -0
package/package.json
ADDED
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@boltic/swirl",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Visual workflow builder library for React — drag-and-drop automation with React Flow and Material-UI",
|
|
5
|
+
"type": "commonjs",
|
|
6
|
+
"main": "dist/swirl.umd.js",
|
|
7
|
+
"module": "dist/swirl.es.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/swirl.es.js",
|
|
13
|
+
"require": "./dist/swirl.umd.js"
|
|
14
|
+
},
|
|
15
|
+
"./dist/style.css": "./dist/style.css"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist"
|
|
19
|
+
],
|
|
20
|
+
"sideEffects": [
|
|
21
|
+
"**/*.css"
|
|
22
|
+
],
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/boltic/swirl.git"
|
|
26
|
+
},
|
|
27
|
+
"keywords": [
|
|
28
|
+
"workflow",
|
|
29
|
+
"react",
|
|
30
|
+
"react-flow",
|
|
31
|
+
"automation",
|
|
32
|
+
"visual-editor",
|
|
33
|
+
"drag-and-drop",
|
|
34
|
+
"material-ui",
|
|
35
|
+
"low-code"
|
|
36
|
+
],
|
|
37
|
+
"author": "Ahmed Sakri <ahmedsakri@gofynd.com>",
|
|
38
|
+
"license": "MIT",
|
|
39
|
+
"scripts": {
|
|
40
|
+
"dev": "npm run tasks && vite",
|
|
41
|
+
"build": "npm run tasks && tsc && vite build",
|
|
42
|
+
"build-watch": "npm run tasks && tsc && vite build --watch --config vite.config.mts",
|
|
43
|
+
"tasks": "node tasks",
|
|
44
|
+
"lint": "eslint . --ext ts,tsx",
|
|
45
|
+
"lint:fix": "eslint . --ext ts,tsx --fix",
|
|
46
|
+
"preview": "vite preview",
|
|
47
|
+
"prettier": "prettier --write \"src/**/*.{ts,tsx,json,md}\"",
|
|
48
|
+
"prepare": "node -e \"process.exit(require('fs').existsSync('.git')?0:1)\" && husky install || true",
|
|
49
|
+
"prepublishOnly": "npm run build",
|
|
50
|
+
"lint-staged": "lint-staged"
|
|
51
|
+
},
|
|
52
|
+
"dependencies": {
|
|
53
|
+
"@codemirror/autocomplete": "^6.18.6",
|
|
54
|
+
"@codemirror/commands": "^6.7.1",
|
|
55
|
+
"@codemirror/lang-html": "^6.4.9",
|
|
56
|
+
"@codemirror/lang-javascript": "^6.2.4",
|
|
57
|
+
"@codemirror/lang-json": "^6.0.2",
|
|
58
|
+
"@codemirror/lang-python": "^6.2.1",
|
|
59
|
+
"@codemirror/lang-sql": "^6.8.0",
|
|
60
|
+
"@codemirror/lang-xml": "^6.1.0",
|
|
61
|
+
"@codemirror/lint": "^6.8.2",
|
|
62
|
+
"@codemirror/search": "^6.5.11",
|
|
63
|
+
"@codemirror/state": "^6.5.2",
|
|
64
|
+
"@codemirror/view": "^6.36.5",
|
|
65
|
+
"@dagrejs/dagre": "^1.1.5",
|
|
66
|
+
"@fynd/intelligence": "git+ssh://git@ssh.dev.azure.com/v3/GoFynd/CommonLibraries/fynd-intelligence-react-sdk#0.0.8",
|
|
67
|
+
"@mui/x-data-grid": "^6.19.4",
|
|
68
|
+
"@mui/x-date-pickers": "^7.28.0",
|
|
69
|
+
"@reduxjs/toolkit": "^2.0.1",
|
|
70
|
+
"@types/lodash.capitalize": "^4.2.9",
|
|
71
|
+
"@uiw/react-json-view": "^2.0.0-alpha.30",
|
|
72
|
+
"@xyflow/react": "^12.9.3",
|
|
73
|
+
"axios": "^1.6.7",
|
|
74
|
+
"codemirror": "^6.0.1",
|
|
75
|
+
"cron-validator": "^1.3.1",
|
|
76
|
+
"cronstrue": "^2.44.0",
|
|
77
|
+
"crypto-js": "^4.2.0",
|
|
78
|
+
"dayjs": "^1.11.10",
|
|
79
|
+
"dompurify": "^3.2.2",
|
|
80
|
+
"graphql": "^16.8.1",
|
|
81
|
+
"html-to-image": "^1.11.13",
|
|
82
|
+
"js-beautify": "^1.15.4",
|
|
83
|
+
"jsonata": "^2.0.3",
|
|
84
|
+
"jsonc-parser": "^3.2.1",
|
|
85
|
+
"jsonpath": "^1.1.1",
|
|
86
|
+
"lodash.camelcase": "^4.3.0",
|
|
87
|
+
"lodash.capitalize": "^4.2.1",
|
|
88
|
+
"lodash.clonedeep": "^4.5.0",
|
|
89
|
+
"lodash.debounce": "^4.0.8",
|
|
90
|
+
"lodash.get": "^4.4.2",
|
|
91
|
+
"lodash.groupby": "^4.6.0",
|
|
92
|
+
"lodash.isempty": "^4.4.0",
|
|
93
|
+
"lodash.isequal": "^4.5.0",
|
|
94
|
+
"lodash.isnull": "^3.0.0",
|
|
95
|
+
"lodash.mapvalues": "^4.6.0",
|
|
96
|
+
"lodash.omit": "^4.5.0",
|
|
97
|
+
"lodash.snakecase": "^4.1.1",
|
|
98
|
+
"lodash.startcase": "^4.4.0",
|
|
99
|
+
"react-hook-form": "^7.55.0",
|
|
100
|
+
"react-markdown": "^10.1.0",
|
|
101
|
+
"react-redux": "^9.1.0",
|
|
102
|
+
"react-window": "^1.8.11",
|
|
103
|
+
"redux": "^5.0.1",
|
|
104
|
+
"ripple": "git+ssh://git@ssh.dev.azure.com:v3/GoFynd/FyndCloud/ripple#v2.0",
|
|
105
|
+
"slate": "^0.112.0",
|
|
106
|
+
"slate-history": "^0.110.3",
|
|
107
|
+
"slate-react": "^0.112.0",
|
|
108
|
+
"sql-formatter": "^15.5.2",
|
|
109
|
+
"url-join": "^5.0.0",
|
|
110
|
+
"uuid": "^11.0.5"
|
|
111
|
+
},
|
|
112
|
+
"peerDependencies": {
|
|
113
|
+
"@emotion/react": "^11.11.3",
|
|
114
|
+
"@emotion/styled": "^11.11.0",
|
|
115
|
+
"@mui/material": "^5.15.12",
|
|
116
|
+
"react": "^18.2.0",
|
|
117
|
+
"react-dom": "^18.2.0"
|
|
118
|
+
},
|
|
119
|
+
"devDependencies": {
|
|
120
|
+
"@types/crypto-js": "^4.2.1",
|
|
121
|
+
"@types/js-beautify": "^1.14.3",
|
|
122
|
+
"@types/jsonpath": "^0.2.4",
|
|
123
|
+
"@types/lodash.camelcase": "^4.3.9",
|
|
124
|
+
"@types/lodash.clonedeep": "^4.5.7",
|
|
125
|
+
"@types/lodash.debounce": "^4.0.7",
|
|
126
|
+
"@types/lodash.get": "^4.4.9",
|
|
127
|
+
"@types/lodash.groupby": "^4.6.7",
|
|
128
|
+
"@types/lodash.isempty": "^4.4.7",
|
|
129
|
+
"@types/lodash.isequal": "^4.5.8",
|
|
130
|
+
"@types/lodash.isnull": "^3.0.9",
|
|
131
|
+
"@types/lodash.mapvalues": "^4.6.7",
|
|
132
|
+
"@types/lodash.omit": "^4.5.7",
|
|
133
|
+
"@types/lodash.snakecase": "^4.1.9",
|
|
134
|
+
"@types/lodash.startcase": "^4.4.7",
|
|
135
|
+
"@types/react": "^18.2.48",
|
|
136
|
+
"@types/react-dom": "^18.2.17",
|
|
137
|
+
"@types/react-redux": "^7.1.33",
|
|
138
|
+
"@types/react-window": "^1.8.8",
|
|
139
|
+
"@types/uuid": "^9.0.2",
|
|
140
|
+
"@typescript-eslint/eslint-plugin": "^8.7.0",
|
|
141
|
+
"@typescript-eslint/parser": "^8.7.0",
|
|
142
|
+
"@vitejs/plugin-react": "^4.7.0",
|
|
143
|
+
"eslint": "^8.57.1",
|
|
144
|
+
"eslint-import-resolver-typescript": "^3.6.1",
|
|
145
|
+
"eslint-plugin-import": "^2.29.1",
|
|
146
|
+
"eslint-plugin-react": "^7.33.2",
|
|
147
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
148
|
+
"eslint-plugin-unused-imports": "^4.2.0",
|
|
149
|
+
"husky": "^8.0.3",
|
|
150
|
+
"lint-staged": "^16.1.5",
|
|
151
|
+
"prettier": "^3.6.2",
|
|
152
|
+
"sass": "^1.83.4",
|
|
153
|
+
"svgo": "^3.3.2",
|
|
154
|
+
"typescript": "^5.9.2",
|
|
155
|
+
"vite": "^7.1.2"
|
|
156
|
+
}
|
|
157
|
+
}
|