-
Notifications
You must be signed in to change notification settings - Fork 206
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 2.92 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 2.92 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
{
"name": "@carbon/charts-react",
"version": "1.27.3",
"description": "Carbon Charts component library for React",
"type": "module",
"module": "./dist/index.mjs",
"main": "./dist/index.umd.cjs",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.umd.cjs"
},
"./styles.min.css": "./dist/styles.min.css",
"./styles.min": "./dist/styles.min.css",
"./styles.css": "./dist/styles.css",
"./styles": "./dist/styles.css"
},
"styles": "./dist/styles.css",
"files": [
"dist",
"README.md",
"telemetry.yml"
],
"scripts": {
"postinstall": "ibmtelemetry --config=telemetry.yml",
"file:styles": "cp ../core/dist/styles.* dist",
"file:downlevel:dts": "downlevel-dts dist dist",
"postbundle": "concurrently \"yarn:file:*\"",
"build": "vite build && cp dist/index.umd.cjs dist/index.umd.js && yarn postbundle",
"build:test": "vite build --config vite.test.config.ts --emptyOutDir",
"dev": "vite --port 3002",
"test:dom": "playwright test",
"test:dom:rebase": "playwright test --update-snapshots",
"lint": "eslint",
"format": "prettier . --write --ignore-path ../../.prettierignore"
},
"dependencies": {
"@carbon/charts": "workspace:*",
"@carbon/icons-react": "^11.64.0",
"@ibm/telemetry-js": "^1.9.1"
},
"peerDependencies": {
"react": "^16.8.6 || ^17.0.1 || ^18.2.0 || ^19.0.0",
"react-dom": "^16.8.6 || ^17.0.1 || ^18.2.0 || ^19.0.0"
},
"devDependencies": {
"@playwright/test": "^1.54.2",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react-swc": "^3.11.0",
"classnames": "^2.5.1",
"concurrently": "^9.2.0",
"downlevel-dts": "^0.11.0",
"eslint": "^9.32.0",
"prettier": "^3.6.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"typescript": "^5.9.2",
"vite": "^7.0.6",
"vite-plugin-dts": "^4.5.4"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/carbon-design-system/carbon-charts#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/carbon-design-system/carbon-charts.git",
"directory": "packages/react"
},
"license": "Apache-2.0",
"author": "IBM",
"keywords": [
"charts",
"graphs",
"radar",
"gauge",
"donut",
"pie",
"sparkline",
"tree",
"treemap",
"heatmap",
"wordcloud",
"histogram",
"alluvial",
"geo",
"bar",
"bullet",
"scatter",
"meter",
"line",
"react",
"reactive",
"component",
"carbon",
"ibm",
"svg",
"data",
"typescript"
],
"bugs": {
"url": "https://github.com/carbon-design-system/carbon-charts/issues"
},
"maintainers": [
{
"name": "Eliad Moosavi",
"email": "iliadm@ca.ibm.com",
"url": "https://github.com/theiliad"
}
],
"contributors": [
{
"name": "Eliad Moosavi",
"email": "iliadm@ca.ibm.com",
"url": "https://github.com/theiliad"
}
],
"gitHead": "f7037103474e53901678dd9e62095b0b1f0f62c4"
}