@darajs/ui-causal-graph-editor 1.5.2 → 1.5.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/package.json +121 -121
package/package.json
CHANGED
|
@@ -1,123 +1,123 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
2
|
+
"name": "@darajs/ui-causal-graph-editor",
|
|
3
|
+
"version": "1.5.4",
|
|
4
|
+
"description": "CausalGraph editor for the Dara UI framework",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.js",
|
|
7
|
+
"jsnext:main": "dist/index.js",
|
|
8
|
+
"scripts": {
|
|
9
|
+
"build": "rimraf dist && tsc && tsc-alias",
|
|
10
|
+
"lint": "eslint src --ext .tsx --max-warnings 0 && stylelint './src/**/*.tsx'",
|
|
11
|
+
"lint:fix": "eslint src --ext .tsx --max-warnings 0 --fix",
|
|
12
|
+
"package": "yarn build && yarn publish --no-git-tag-version",
|
|
13
|
+
"test-watch": "jest --watch",
|
|
14
|
+
"test": "jest",
|
|
15
|
+
"storybook": "start-storybook -p 6006",
|
|
16
|
+
"build-storybook": "build-storybook"
|
|
17
|
+
},
|
|
18
|
+
"author": "Krzysztof Bielikowicz <krzysztof@causalens.com>",
|
|
19
|
+
"license": "Apache-2.0",
|
|
20
|
+
"prettier": "@darajs/prettier-config",
|
|
21
|
+
"devDependencies": {
|
|
22
|
+
"@babel/core": "^7.15.8",
|
|
23
|
+
"@babel/preset-env": "^7.15.8",
|
|
24
|
+
"@babel/preset-react": "^7.14.5",
|
|
25
|
+
"@babel/preset-typescript": "^7.15.0",
|
|
26
|
+
"@darajs/eslint-config": "~1.5.4",
|
|
27
|
+
"@darajs/prettier-config": "~1.5.4",
|
|
28
|
+
"@darajs/stylelint-config": "~1.5.4",
|
|
29
|
+
"@storybook/addon-a11y": "^6.5.16",
|
|
30
|
+
"@storybook/addon-actions": "^6.5.16",
|
|
31
|
+
"@storybook/addon-essentials": "^6.5.16",
|
|
32
|
+
"@storybook/addon-links": "^6.5.16",
|
|
33
|
+
"@storybook/addon-styling": "^0.3.2",
|
|
34
|
+
"@storybook/builder-webpack5": "^6.5.16",
|
|
35
|
+
"@storybook/manager-webpack5": "^6.5.16",
|
|
36
|
+
"@storybook/react": "^6.5.16",
|
|
37
|
+
"@storybook/theming": "^6.5.16",
|
|
38
|
+
"@testing-library/dom": "^9.3.0",
|
|
39
|
+
"@testing-library/jest-dom": "^5.16.5",
|
|
40
|
+
"@testing-library/react": "^14.0.0",
|
|
41
|
+
"@types/cytoscape": "^3.19.9",
|
|
42
|
+
"@types/cytoscape-fcose": "^2.2.0",
|
|
43
|
+
"@types/d3": "^6.2.0",
|
|
44
|
+
"@types/fontfaceobserver": "^2.1.0",
|
|
45
|
+
"@types/jest": "^25.2.3",
|
|
46
|
+
"@types/lodash": "^4.14.155",
|
|
47
|
+
"@types/react": "^18.0",
|
|
48
|
+
"@types/styled-components": "^5.1.26",
|
|
49
|
+
"@types/svg-path-parser": "^1.1.3",
|
|
50
|
+
"@vitejs/plugin-react": "^3.1.0",
|
|
51
|
+
"babel-jest": "^29.5.0",
|
|
52
|
+
"babel-loader": "^8.2.2",
|
|
53
|
+
"eslint": "^7.32.0",
|
|
54
|
+
"graphology-generators": "^0.11.2",
|
|
55
|
+
"jest": "^29.5.0",
|
|
56
|
+
"jest-css-modules": "^2.1.0",
|
|
57
|
+
"prettier": "^2.3.0",
|
|
58
|
+
"react-docgen-typescript-plugin": "^1.0.5",
|
|
59
|
+
"react-test-renderer": "^17.0",
|
|
60
|
+
"rimraf": "^3.0.2",
|
|
61
|
+
"storybook-dark-mode": "^2.1.1",
|
|
62
|
+
"stylelint": "^13.5.0",
|
|
63
|
+
"ts-jest": "^29.1.0",
|
|
64
|
+
"tsc-alias": "^1.8.5",
|
|
65
|
+
"typescript": "^5.0.4"
|
|
66
|
+
},
|
|
67
|
+
"dependencies": {
|
|
68
|
+
"@darajs/styled-components": "~1.5.4",
|
|
69
|
+
"@darajs/ui-components": "~1.5.4",
|
|
70
|
+
"@darajs/ui-icons": "~1.5.4",
|
|
71
|
+
"@darajs/ui-notifications": "~1.5.4",
|
|
72
|
+
"@darajs/ui-utils": "~1.5.4",
|
|
73
|
+
"@darajs/ui-widgets": "~1.5.4",
|
|
74
|
+
"@pixi-essentials/cull": "~2.0.0",
|
|
75
|
+
"@pixi/app": "~7.2.0",
|
|
76
|
+
"@pixi/constants": "~7.2.0",
|
|
77
|
+
"@pixi/core": "~7.2.0",
|
|
78
|
+
"@pixi/display": "~7.2.0",
|
|
79
|
+
"@pixi/events": "~7.2.0",
|
|
80
|
+
"@pixi/filter-drop-shadow": "~5.2.0",
|
|
81
|
+
"@pixi/graphics": "~7.2.0",
|
|
82
|
+
"@pixi/graphics-extras": "~7.2.0",
|
|
83
|
+
"@pixi/graphics-smooth": "~1.1.0",
|
|
84
|
+
"@pixi/math": "~7.2.0",
|
|
85
|
+
"@pixi/mixin-get-child-by-name": "~7.2.0",
|
|
86
|
+
"@pixi/sprite": "~7.2.0",
|
|
87
|
+
"@pixi/text": "~7.2.0",
|
|
88
|
+
"@pixi/ticker": "~7.2.0",
|
|
89
|
+
"cytoscape": "^3.23.0",
|
|
90
|
+
"cytoscape-fcose": "^2.2.0",
|
|
91
|
+
"d3": "6.2.0",
|
|
92
|
+
"d3-dag": "^1.1.0",
|
|
93
|
+
"d3-scale": "3.2.1",
|
|
94
|
+
"fontfaceobserver": "^2.3.0",
|
|
95
|
+
"graphology": "^0.25.1",
|
|
96
|
+
"graphology-dag": "^0.2.0",
|
|
97
|
+
"graphology-layout": "^0.6.1",
|
|
98
|
+
"graphology-layout-forceatlas2": "^0.10.1",
|
|
99
|
+
"graphology-layout-noverlap": "^0.4.2",
|
|
100
|
+
"graphology-types": "^0.24.7",
|
|
101
|
+
"immer": "^9.0.6",
|
|
102
|
+
"lodash": "4.17.21",
|
|
103
|
+
"pixi-viewport": "~5.0.0",
|
|
104
|
+
"pixi.js": "~7.2.0",
|
|
105
|
+
"polished": "^4.1.1",
|
|
106
|
+
"react": "^18.0",
|
|
107
|
+
"react-dnd": "^14.0.5",
|
|
108
|
+
"react-dnd-html5-backend": "^14.1.0",
|
|
109
|
+
"shortid": "2.2.15",
|
|
110
|
+
"svg-path-parser": "^1.1.0",
|
|
111
|
+
"tippy.js": "6.2.6",
|
|
112
|
+
"use-immer": "^0.6.0",
|
|
113
|
+
"vis-data": "^7.1.2",
|
|
114
|
+
"vis-network": "^9.1.0"
|
|
115
|
+
},
|
|
116
|
+
"files": [
|
|
117
|
+
"dist"
|
|
118
|
+
],
|
|
119
|
+
"publishConfig": {
|
|
120
|
+
"access": "public"
|
|
121
|
+
},
|
|
122
|
+
"gitHead": "010461f50cc91b4cc126f27974750e47f6c130a3"
|
|
123
123
|
}
|