File size: 1,634 Bytes
1e92f2d |
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 |
{
"name": "@chakra-ui/charts",
"version": "3.23.0",
"description": "Data visualization components for Chakra UI",
"type": "module",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"author": "Segun Adebayo <sage@adebayosegun.com>",
"license": "MIT",
"homepage": "https://chakra-ui.com/",
"repository": {
"type": "git",
"url": "https://github.com/chakra-ui/chakra-ui",
"directory": "packages/charts"
},
"keywords": [
"ui",
"charts",
"chart",
"react",
"recharts",
"chartjs"
],
"scripts": {
"prepack": "tsx ../../scripts/conditions.ts",
"postpack": "tsx ../../scripts/conditions.ts --restore",
"build:fast": "tsx ../../scripts/build/main.ts",
"build": "tsx ../../scripts/build/main.ts --dts",
"dev": "pnpm build:fast --watch",
"clean": "rimraf dist .turbo",
"typecheck": "tsc --noEmit"
},
"exports": {
".": {
"dev": "./src/index.ts",
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/types/index.d.ts",
"default": "./dist/cjs/index.cjs"
}
},
"./package.json": "./package.json"
},
"devDependencies": {
"@chakra-ui/react": "workspace:*",
"recharts": "2.15.3",
"react": "19.1.0",
"react-dom": "19.1.0"
},
"peerDependencies": {
"@chakra-ui/react": ">=3",
"recharts": ">=2",
"react": ">=18",
"react-dom": ">=18"
}
}
|