-
Notifications
You must be signed in to change notification settings - Fork 381
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.05 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.05 KB
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
123
124
125
126
127
128
{
"name": "@patternfly/react-charts",
"version": "8.1.0-prerelease.17",
"description": "This library provides a set of React chart components for use with the PatternFly reference implementation.",
"main": "dist/js/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"typesVersions": {
"*": {
"victory": [
"dist/esm/victory/index.d.ts"
]
}
},
"patternfly:src": "src/",
"sideEffects": [
"*.css",
"*.scss"
],
"publishConfig": {
"access": "public",
"tag": "prerelase"
},
"repository": {
"type": "git",
"url": "https://github.com/patternfly/patternfly-react.git"
},
"keywords": [
"react",
"patternfly"
],
"author": "Red Hat",
"license": "MIT",
"bugs": {
"url": "https://github.com/patternfly/patternfly-react/issues"
},
"homepage": "https://github.com/patternfly/patternfly-react#readme",
"dependencies": {
"@patternfly/react-styles": "workspace:^",
"@patternfly/react-tokens": "workspace:^",
"hoist-non-react-statics": "^3.3.2",
"lodash": "^4.17.21",
"tslib": "^2.8.1"
},
"peerDependencies": {
"react": "^17 || ^18",
"react-dom": "^17 || ^18",
"victory-area": "^37.3.3",
"victory-axis": "^37.3.2",
"victory-bar": "^37.3.2",
"victory-box-plot": "^37.3.2",
"victory-chart": "^37.3.3",
"victory-core": "^37.3.2",
"victory-create-container": "^37.3.4",
"victory-cursor-container": "^37.3.2",
"victory-group": "^37.3.2",
"victory-legend": "^37.3.2",
"victory-line": "^37.3.2",
"victory-pie": "^37.3.2",
"victory-scatter": "^37.3.2",
"victory-stack": "^37.3.2",
"victory-tooltip": "^37.3.2",
"victory-voronoi-container": "^37.3.2",
"victory-zoom-container": "^37.3.2"
},
"peerDependenciesMeta": {
"victory-area": {
"optional": true
},
"victory-axis": {
"optional": true
},
"victory-bar": {
"optional": true
},
"victory-box-plot": {
"optional": true
},
"victory-chart": {
"optional": true
},
"victory-core": {
"optional": true
},
"victory-create-container": {
"optional": true
},
"victory-cursor-container": {
"optional": true
},
"victory-group": {
"optional": true
},
"victory-legend": {
"optional": true
},
"victory-line": {
"optional": true
},
"victory-pie": {
"optional": true
},
"victory-scatter": {
"optional": true
},
"victory-stack": {
"optional": true
},
"victory-tooltip": {
"optional": true
},
"victory-voronoi-container": {
"optional": true
},
"victory-zoom-container": {
"optional": true
}
},
"scripts": {
"clean": "rimraf dist echarts victory",
"build:single:packages": "node ../../scripts/build-single-packages.mjs --config single-packages.config.json",
"subpaths": "node ../../scripts/exportSubpaths.mjs --config subpaths.config.json"
},
"devDependencies": {
"@types/lodash": "^4.17.13",
"fs-extra": "^11.2.0"
}
}