@teambit/graph 0.0.556 → 0.0.557
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 +15 -13
- package/tsconfig.json +34 -0
package/package.json
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "@teambit/graph",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.557",
|
4
4
|
"homepage": "https://bit.dev/teambit/component/graph",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"componentId": {
|
7
7
|
"scope": "teambit.component",
|
8
8
|
"name": "graph",
|
9
|
-
"version": "0.0.
|
9
|
+
"version": "0.0.557"
|
10
10
|
},
|
11
11
|
"dependencies": {
|
12
12
|
"@teambit/harmony": "0.2.11",
|
@@ -23,17 +23,17 @@
|
|
23
23
|
"@teambit/base-ui.text.muted-text": "1.0.1",
|
24
24
|
"@teambit/evangelist.input.checkbox.label": "1.0.3",
|
25
25
|
"@teambit/documenter.ui.heading": "4.1.1",
|
26
|
-
"@teambit/component": "0.0.
|
27
|
-
"@teambit/graphql": "0.0.
|
28
|
-
"@teambit/cli": "0.0.
|
29
|
-
"@teambit/ui": "0.0.
|
30
|
-
"@teambit/legacy-bit-id": "0.0.
|
31
|
-
"@teambit/component.ui.deprecation-icon": "0.0.
|
26
|
+
"@teambit/component": "0.0.557",
|
27
|
+
"@teambit/graphql": "0.0.557",
|
28
|
+
"@teambit/cli": "0.0.388",
|
29
|
+
"@teambit/ui": "0.0.557",
|
30
|
+
"@teambit/legacy-bit-id": "0.0.377",
|
31
|
+
"@teambit/component.ui.deprecation-icon": "0.0.471",
|
32
32
|
"@teambit/design.ui.styles.ellipsis": "0.0.346",
|
33
|
-
"@teambit/envs.ui.env-icon": "0.0.
|
33
|
+
"@teambit/envs.ui.env-icon": "0.0.465",
|
34
34
|
"@teambit/design.ui.pages.not-found": "0.0.352",
|
35
35
|
"@teambit/design.ui.pages.server-error": "0.0.352",
|
36
|
-
"@teambit/ui-foundation.ui.hooks.use-data-query": "0.0.
|
36
|
+
"@teambit/ui-foundation.ui.hooks.use-data-query": "0.0.466"
|
37
37
|
},
|
38
38
|
"devDependencies": {
|
39
39
|
"@types/react": "^17.0.8",
|
@@ -49,7 +49,7 @@
|
|
49
49
|
},
|
50
50
|
"peerDependencies": {
|
51
51
|
"@apollo/client": "^3.0.0",
|
52
|
-
"@teambit/legacy": "1.0.
|
52
|
+
"@teambit/legacy": "1.0.174",
|
53
53
|
"react-dom": "^16.8.0 || ^17.0.0",
|
54
54
|
"react": "^16.8.0 || ^17.0.0"
|
55
55
|
},
|
@@ -77,7 +77,7 @@
|
|
77
77
|
"react": "-"
|
78
78
|
},
|
79
79
|
"peerDependencies": {
|
80
|
-
"@teambit/legacy": "1.0.
|
80
|
+
"@teambit/legacy": "1.0.174",
|
81
81
|
"react-dom": "^16.8.0 || ^17.0.0",
|
82
82
|
"react": "^16.8.0 || ^17.0.0"
|
83
83
|
}
|
@@ -87,7 +87,9 @@
|
|
87
87
|
"dist",
|
88
88
|
"!dist/tsconfig.tsbuildinfo",
|
89
89
|
"README.md",
|
90
|
-
"README.mdx"
|
90
|
+
"README.mdx",
|
91
|
+
"*.js",
|
92
|
+
"*.json"
|
91
93
|
],
|
92
94
|
"private": false,
|
93
95
|
"engines": {
|
package/tsconfig.json
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
{
|
2
|
+
"compilerOptions": {
|
3
|
+
"lib": [
|
4
|
+
"es2019",
|
5
|
+
"DOM",
|
6
|
+
"ES6",
|
7
|
+
"DOM.Iterable",
|
8
|
+
"ScriptHost"
|
9
|
+
],
|
10
|
+
"target": "es2015",
|
11
|
+
"module": "commonjs",
|
12
|
+
"jsx": "react",
|
13
|
+
"declaration": true,
|
14
|
+
"sourceMap": true,
|
15
|
+
"skipLibCheck": true,
|
16
|
+
"moduleResolution": "node",
|
17
|
+
"esModuleInterop": true,
|
18
|
+
"composite": true,
|
19
|
+
"emitDeclarationOnly": true,
|
20
|
+
"outDir": "dist",
|
21
|
+
"experimentalDecorators": true,
|
22
|
+
"emitDecoratorMetadata": true,
|
23
|
+
"allowSyntheticDefaultImports": true,
|
24
|
+
"strictPropertyInitialization": false,
|
25
|
+
"strict": true,
|
26
|
+
"noImplicitAny": false,
|
27
|
+
"rootDir": ".",
|
28
|
+
"preserveConstEnums": true,
|
29
|
+
"resolveJsonModule": true
|
30
|
+
},
|
31
|
+
"exclude": [
|
32
|
+
"dist"
|
33
|
+
]
|
34
|
+
}
|