{
  "name": "@groww-tech/react-charts",
  "version": "0.1.9-beta.0",
  "description": "React charts library tailored as per Groww needs",
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "types": "types/index.d.ts",
  "files": [
    "dist",
    "types"
  ],
  "sideEffects": false,
  "repository": {
    "type": "git",
    "url": "https://github.com/Groww-OSS/webster.git"
  },
  "author": "Vikas Singh <vikas.singh707@gmail.com> (https://twitter.com/VikasSi25579022)",
  "contributors": [
    "Samyak Jain (https://twitter.com/__samyak)",
    "Akash Vashist (https://twitter.com/akayishh)"
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/Groww-OSS/webster/issues"
  },
  "homepage": "https://github.com/Groww-OSS/webster/tree/develop/packages/react-charts#readme",
  "publishConfig": {
    "access": "public"
  },
  "peerDependencies": {
    "react": "^16.12.0 || ^17.0.0",
    "react-dom": "^16.12.0 || ^17.0.0",
    "@groww-tech/mint-css": "0.0.6",
    "prop-types": "15.7.2"
  },
  "devDependencies": {
    "@babel/core": "^7.13.15",
    "@babel/plugin-proposal-class-properties": "^7.13.0",
    "@babel/plugin-proposal-private-methods": "^7.13.0",
    "@babel/preset-react": "^7.13.13",
    "@babel/preset-typescript": "^7.13.0",
    "@rollup/plugin-commonjs": "^19.0.0",
    "@rollup/plugin-node-resolve": "^11.2.1",
    "@rollup/plugin-typescript": "^8.3.0",
    "@types/d3-array": "3.0.2",
    "d3-array": "3.0.2",
    "@types/react": "^17.0.38",
    "@types/react-dom": "^17.0.3",
    "babel-loader": "^8.2.2",
    "postcss": "^8.2.13",
    "postcss-import": "^14.0.2",
    "postcss-url": "^10.1.3",
    "react": "^16.12.0",
    "react-dom": "^16.12.0",
    "rimraf": "^3.0.2",
    "rollup": "^2.45.2",
    "rollup-plugin-babel": "^4.4.0",
    "rollup-plugin-peer-deps-external": "^2.2.4",
    "rollup-plugin-postcss": "^4.0.0",
    "rollup-plugin-terser": "^7.0.2",
    "typescript": "^4.2.2",
    "@babel/cli": "^7.11.6",
    "@babel/plugin-transform-runtime": "^7.11.5",
    "@babel/preset-env": "^7.11.5",
    "rollup-plugin-commonjs": "^10.1.0",
    "rollup-plugin-node-resolve": "^5.2.0",
    "rollup-plugin-prettier": "^2.1.0",
    "rollup-plugin-size": "^0.2.2",
    "@groww-tech/tsconfig": "1.0.2"
  },
  "dependencies": {
    "@babel/runtime": "^7.14.6",
    "@visx/axis": "^2.2.2",
    "@visx/event": "^2.1.2",
    "@visx/scale": "^2.2.2",
    "@visx/shape": "^2.2.2"
  },
  "keywords": [
    "charts",
    "react-charts",
    "groww",
    "candle-chart",
    "line-chart",
    "bar-graph",
    "pie-chart"
  ],
  "scripts": {
    "build": "npm run build:commonjs && npm run build:types",
    "build:commonjs": "rimraf ./dist && rollup -c",
    "build:types": "rimraf ./types && tsc --project ./tsconfig.types.json",
    "watch": "npm run watch:commonjs && npm run watch:types",
    "watch:commonjs": "rimraf ./dist && cross-env BABEL_ENV=commonjs babel --watch --extensions .ts,.tsx ./src --out-dir dist",
    "watch:types": "rimraf ./types && tsc --watch --project ./tsconfig.types.json",
    "now-build": "npm i && npm run build",
    "start": "npm run watch",
    "stats": "open ./stats.html",
    "pushTags": "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag -a react-charts-v$PACKAGE_VERSION -m \"@groww-tech/react-charts-v$PACKAGE_VERSION\" && git push --tags"
  }
}