{
  "name": "@antv/chart-advisor",
  "version": "2.0.5-alpha.0",
  "description": "An empiric-driven chart recommendation js library.",
  "homepage": "https://ava.antv.vision/en/docs/guide/chart-advisor/intro",
  "repository": {
    "type": "git",
    "url": "https://github.com/antvis/ava"
  },
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "unpkg": "dist/index.min.js",
  "module": "esm/index.js",
  "files": [
    "esm",
    "lib",
    "dist"
  ],
  "scripts": {
    "lint": "eslint --ext .js,.jsx,.ts,.tsx './'",
    "lint-fix": "npm run lint -- --fix",
    "prettier": " prettier --check '**/*' --ignore-path=../../.prettierignore",
    "prettier-fix": "npm run prettier -- --write",
    "format": "npm run prettier-fix && npm run lint-fix",
    "lint-staged": "lint-staged",
    "clean": "rimraf lib esm dist",
    "build:umd": "rimraf ./dist && rollup -c",
    "build:cjs": "rimraf ./lib && tsc --module commonjs --outDir lib",
    "build:esm": "rimraf ./esm && tsc --module es6 --outDir esm",
    "build": "run-p build:*",
    "test": "jest",
    "coverage": "jest --coverage",
    "watch": "yarn module && yarn build --w"
  },
  "devDependencies": {
    "@antv/data-samples": "^1.0.1",
    "@rollup/plugin-json": "^4.1.0",
    "@types/jest": "^23.3.12",
    "eslint": "^7.32.0",
    "jest": "^24.9.0",
    "lint-staged": "^11.0.1",
    "npm-run-all": "^4.1.5",
    "prettier": "^2.4.1",
    "rimraf": "^3.0.2",
    "rollup": "^2.59.0",
    "typescript": "4.3.5"
  },
  "dependencies": {
    "@antv/antv-spec": "^0.1.0-alpha.18",
    "@antv/ckb": "^2.0.4",
    "@antv/color-schema": "^0.2.3",
    "@antv/data-samples": "^1.0.1",
    "@antv/data-wizard": "^2.0.4",
    "@antv/smart-color": "^0.2.1",
    "tslib": "^2.3.1"
  },
  "lint-staged": {
    "*.{ts,tsx}": [
      "eslint --fix",
      "prettier --write"
    ]
  }
}
