@finos/legend-extension-dsl-data-space 1.0.18 → 1.0.19
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/CHANGELOG.md +2 -0
- package/lib/index.css +1 -1
- package/lib/package.json +88 -0
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
package/lib/index.css
CHANGED
package/lib/package.json
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@finos/legend-extension-dsl-data-space",
|
|
3
|
+
"version": "1.0.19",
|
|
4
|
+
"description": "Legend extension for Data Space DSL",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"legend",
|
|
7
|
+
"legend-extension",
|
|
8
|
+
"dsl",
|
|
9
|
+
"dsl-data-space"
|
|
10
|
+
],
|
|
11
|
+
"homepage": "https://github.com/finos/legend-studio/tree/master/packages/legend-extension-dsl-data-space",
|
|
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-data-space"
|
|
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-extension-dsl-diagram": "workspace:*",
|
|
46
|
+
"@finos/legend-graph": "workspace:*",
|
|
47
|
+
"@finos/legend-model-storage": "workspace:*",
|
|
48
|
+
"@finos/legend-query": "workspace:*",
|
|
49
|
+
"@finos/legend-server-depot": "workspace:*",
|
|
50
|
+
"@finos/legend-shared": "workspace:*",
|
|
51
|
+
"@finos/legend-studio": "workspace:*",
|
|
52
|
+
"@types/react": "17.0.39",
|
|
53
|
+
"@types/react-router-dom": "5.3.2",
|
|
54
|
+
"mobx": "6.4.2",
|
|
55
|
+
"mobx-react-lite": "3.3.0",
|
|
56
|
+
"monaco-editor": "0.32.1",
|
|
57
|
+
"react": "17.0.2",
|
|
58
|
+
"react-dom": "17.0.2",
|
|
59
|
+
"react-resize-detector": "7.0.0",
|
|
60
|
+
"react-router": "5.2.1",
|
|
61
|
+
"react-router-dom": "5.3.0",
|
|
62
|
+
"serializr": "2.0.5"
|
|
63
|
+
},
|
|
64
|
+
"devDependencies": {
|
|
65
|
+
"@finos/legend-dev-utils": "workspace:*",
|
|
66
|
+
"cross-env": "7.0.3",
|
|
67
|
+
"eslint": "8.10.0",
|
|
68
|
+
"jest": "27.5.1",
|
|
69
|
+
"npm-run-all": "4.1.5",
|
|
70
|
+
"rimraf": "3.0.2",
|
|
71
|
+
"sass": "1.49.9",
|
|
72
|
+
"typescript": "4.6.2"
|
|
73
|
+
},
|
|
74
|
+
"peerDependencies": {
|
|
75
|
+
"react": "^17.0.0"
|
|
76
|
+
},
|
|
77
|
+
"publishConfig": {
|
|
78
|
+
"directory": "build/publishContent"
|
|
79
|
+
},
|
|
80
|
+
"extensions": {
|
|
81
|
+
"graphPreset": "@finos/legend-graph-preset-dsl-data-space",
|
|
82
|
+
"pureProtocolProcessorPlugin": "@finos/legend-graph-plugin-dsl-data-space-pure-protocol-processor",
|
|
83
|
+
"pureGraphManagerPlugin": "@finos/legend-graph-plugin-dsl-data-space-pure-graph-manager",
|
|
84
|
+
"pureGraphPlugin": "@finos/legend-graph-plugin-dsl-data-space-pure-graph",
|
|
85
|
+
"studioPlugin": "@finos/legend-studio-plugin-dsl-data-space",
|
|
86
|
+
"queryPlugin": "@finos/legend-query-plugin-dsl-data-space"
|
|
87
|
+
}
|
|
88
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@finos/legend-extension-dsl-data-space",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.19",
|
|
4
4
|
"description": "Legend extension for Data Space DSL",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"legend",
|
|
@@ -40,15 +40,15 @@
|
|
|
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-extension-dsl-diagram": "1.0.
|
|
46
|
-
"@finos/legend-graph": "1.2.
|
|
47
|
-
"@finos/legend-model-storage": "0.0.
|
|
48
|
-
"@finos/legend-query": "1.0.
|
|
49
|
-
"@finos/legend-server-depot": "0.0.
|
|
50
|
-
"@finos/legend-shared": "1.2.
|
|
51
|
-
"@finos/legend-studio": "3.0.
|
|
43
|
+
"@finos/legend-application": "1.2.1",
|
|
44
|
+
"@finos/legend-art": "0.3.8",
|
|
45
|
+
"@finos/legend-extension-dsl-diagram": "1.0.19",
|
|
46
|
+
"@finos/legend-graph": "1.2.1",
|
|
47
|
+
"@finos/legend-model-storage": "0.0.21",
|
|
48
|
+
"@finos/legend-query": "1.0.1",
|
|
49
|
+
"@finos/legend-server-depot": "0.0.24",
|
|
50
|
+
"@finos/legend-shared": "1.2.3",
|
|
51
|
+
"@finos/legend-studio": "3.0.1",
|
|
52
52
|
"@types/react": "17.0.39",
|
|
53
53
|
"@types/react-router-dom": "5.3.2",
|
|
54
54
|
"mobx": "6.4.2",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"serializr": "2.0.5"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@finos/legend-dev-utils": "0.3.
|
|
65
|
+
"@finos/legend-dev-utils": "0.3.12",
|
|
66
66
|
"cross-env": "7.0.3",
|
|
67
67
|
"eslint": "8.10.0",
|
|
68
68
|
"jest": "27.5.1",
|