@finos/legend-extension-dsl-diagram 1.0.18 → 1.0.19
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +2 -0
- package/lib/index.css +1 -1
- package/lib/package.json +83 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
package/lib/index.css
CHANGED
package/lib/package.json
ADDED
@@ -0,0 +1,83 @@
|
|
1
|
+
{
|
2
|
+
"name": "@finos/legend-extension-dsl-diagram",
|
3
|
+
"version": "1.0.19",
|
4
|
+
"description": "Legend extension for Diagram DSL",
|
5
|
+
"keywords": [
|
6
|
+
"legend",
|
7
|
+
"legend-extension",
|
8
|
+
"dsl",
|
9
|
+
"dsl-diagram"
|
10
|
+
],
|
11
|
+
"homepage": "https://github.com/finos/legend-studio/tree/master/packages/legend-extension-dsl-diagram",
|
12
|
+
"bugs": {
|
13
|
+
"url": "https://github.com/finos/legend-studio/issues"
|
14
|
+
},
|
15
|
+
"repository": {
|
16
|
+
"type": "git",
|
17
|
+
"url": "https://github.com/finos/legend-studio.git",
|
18
|
+
"directory": "packages/legend-extension-dsl-diagram"
|
19
|
+
},
|
20
|
+
"license": "Apache-2.0",
|
21
|
+
"sideEffects": false,
|
22
|
+
"type": "module",
|
23
|
+
"main": "lib/index.js",
|
24
|
+
"module": "lib/index.js",
|
25
|
+
"types": "lib/index.d.ts",
|
26
|
+
"scripts": {
|
27
|
+
"build": "yarn clean && yarn build:sass && yarn build:tsc",
|
28
|
+
"build:sass": "cross-env INIT_CWD=$INIT_CWD node ../../scripts/workflow/buildSass.js",
|
29
|
+
"build:tsc": "tsc --project ./tsconfig.build.json",
|
30
|
+
"clean": "npm-run-all clean:cache clean:lib",
|
31
|
+
"clean:cache": "rimraf \"build\"",
|
32
|
+
"clean:lib": "rimraf \"lib\"",
|
33
|
+
"dev": "npm-run-all --parallel dev:sass dev:tsc",
|
34
|
+
"dev:sass": "sass style lib --watch --load-path=../../node_modules/@finos/legend-art/scss",
|
35
|
+
"dev:tsc": "tsc --watch --preserveWatchOutput",
|
36
|
+
"lint:js": "cross-env NODE_ENV=production eslint --cache --cache-location ./build/.eslintcache --report-unused-disable-directives --parser-options=project:\"./tsconfig.json\" \"./src/**/*.{js,ts,tsx}\"",
|
37
|
+
"publish:prepare": "node ../../scripts/release/preparePublishContent.js",
|
38
|
+
"publish:snapshot": "node ../../scripts/release/publishDevSnapshot.js",
|
39
|
+
"test": "jest",
|
40
|
+
"test:watch": "jest --watch"
|
41
|
+
},
|
42
|
+
"dependencies": {
|
43
|
+
"@finos/legend-application": "workspace:*",
|
44
|
+
"@finos/legend-art": "workspace:*",
|
45
|
+
"@finos/legend-graph": "workspace:*",
|
46
|
+
"@finos/legend-model-storage": "workspace:*",
|
47
|
+
"@finos/legend-shared": "workspace:*",
|
48
|
+
"@finos/legend-studio": "workspace:*",
|
49
|
+
"@types/react": "17.0.39",
|
50
|
+
"mobx": "6.4.2",
|
51
|
+
"mobx-react-lite": "3.3.0",
|
52
|
+
"react": "17.0.2",
|
53
|
+
"react-dnd": "15.1.1",
|
54
|
+
"react-dom": "17.0.2",
|
55
|
+
"react-resize-detector": "7.0.0",
|
56
|
+
"serializr": "2.0.5"
|
57
|
+
},
|
58
|
+
"devDependencies": {
|
59
|
+
"@finos/legend-dev-utils": "workspace:*",
|
60
|
+
"@testing-library/react": "12.1.3",
|
61
|
+
"cross-env": "7.0.3",
|
62
|
+
"eslint": "8.10.0",
|
63
|
+
"jest": "27.5.1",
|
64
|
+
"jest-canvas-mock": "2.3.1",
|
65
|
+
"npm-run-all": "4.1.5",
|
66
|
+
"rimraf": "3.0.2",
|
67
|
+
"sass": "1.49.9",
|
68
|
+
"typescript": "4.6.2"
|
69
|
+
},
|
70
|
+
"peerDependencies": {
|
71
|
+
"react": "^17.0.0"
|
72
|
+
},
|
73
|
+
"publishConfig": {
|
74
|
+
"directory": "build/publishContent"
|
75
|
+
},
|
76
|
+
"extensions": {
|
77
|
+
"graphPreset": "@finos/legend-graph-preset-dsl-diagram",
|
78
|
+
"pureProtocolProcessorPlugin": "@finos/legend-graph-plugin-dsl-diagram-pure-protocol-processor",
|
79
|
+
"pureGraphManagerPlugin": "@finos/legend-graph-plugin-dsl-diagram-pure-graph-manager",
|
80
|
+
"pureGraphPlugin": "@finos/legend-graph-plugin-dsl-diagram-pure-graph",
|
81
|
+
"studioPlugin": "@finos/legend-studio-plugin-dsl-diagram"
|
82
|
+
}
|
83
|
+
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@finos/legend-extension-dsl-diagram",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.19",
|
4
4
|
"description": "Legend extension for Diagram DSL",
|
5
5
|
"keywords": [
|
6
6
|
"legend",
|
@@ -40,12 +40,12 @@
|
|
40
40
|
"test:watch": "jest --watch"
|
41
41
|
},
|
42
42
|
"dependencies": {
|
43
|
-
"@finos/legend-application": "1.2.
|
44
|
-
"@finos/legend-art": "0.3.
|
45
|
-
"@finos/legend-graph": "1.2.
|
46
|
-
"@finos/legend-model-storage": "0.0.
|
47
|
-
"@finos/legend-shared": "1.2.
|
48
|
-
"@finos/legend-studio": "3.0.
|
43
|
+
"@finos/legend-application": "1.2.1",
|
44
|
+
"@finos/legend-art": "0.3.8",
|
45
|
+
"@finos/legend-graph": "1.2.1",
|
46
|
+
"@finos/legend-model-storage": "0.0.21",
|
47
|
+
"@finos/legend-shared": "1.2.3",
|
48
|
+
"@finos/legend-studio": "3.0.1",
|
49
49
|
"@types/react": "17.0.39",
|
50
50
|
"mobx": "6.4.2",
|
51
51
|
"mobx-react-lite": "3.3.0",
|
@@ -56,7 +56,7 @@
|
|
56
56
|
"serializr": "2.0.5"
|
57
57
|
},
|
58
58
|
"devDependencies": {
|
59
|
-
"@finos/legend-dev-utils": "0.3.
|
59
|
+
"@finos/legend-dev-utils": "0.3.12",
|
60
60
|
"@testing-library/react": "12.1.3",
|
61
61
|
"cross-env": "7.0.3",
|
62
62
|
"eslint": "8.10.0",
|