{
  "name": "vkui-alternative-fork",
  "version": "1.0.0",
  "main": "dist/index.js",
  "module": "dist/es6/index.js",
  "typings": "dist/index.d.ts",
  "license": "MIT",
  "description": "VKUI library fork",
  "repository": "https://github.com/VKCOM/VKUI",
  "homepage": "https://vkcom.github.io/vkui-styleguide",
  "defaultSchemeId": "bright_light",
  "sideEffects": [
    "./dist/lib/polyfills.js",
    "./dist/index.js",
    "./dist/es6/lib/polyfills.js",
    "./dist/es6/index.js",
    "*.css"
  ],
  "devDependencies": {
    "@babel/cli": "^7.7.5",
    "@babel/core": "^7.2.2",
    "@babel/plugin-proposal-class-properties": "^7.2.1",
    "@babel/plugin-proposal-object-rest-spread": "^7.2.0",
    "@babel/plugin-transform-runtime": "^7.5.5",
    "@babel/preset-env": "^7.5.5",
    "@babel/preset-react": "^7.0.0",
    "@babel/preset-typescript": "^7.3.3",
    "@babel/runtime": "^7.5.5",
    "@types/node": "^12.7.2",
    "@types/react": "^16.9.2",
    "@types/react-dom": "^16.8.5",
    "@typescript-eslint/eslint-plugin": "^2.3.3",
    "@typescript-eslint/parser": "^2.0.0",
    "@vkontakte/appearance": "https://github.com/VKCOM/Appearance#v2.3.6",
    "@vkontakte/eslint-config": "2.2.0",
    "@vkontakte/icons": "^1.20.2",
    "@vkontakte/vk-bridge": "^2.1.3",
    "autoprefixer": "^7.2.3",
    "babel-loader": "^8.0.4",
    "classnames": "^2.2.6",
    "clean-webpack-plugin": "^3.0.0",
    "concurrently": "^4.1.2",
    "css-loader": "^3.2.0",
    "eslint": "~6.8.0",
    "eslint-plugin-react": "^7.16.0",
    "eslint-plugin-react-hooks": "^2.0.1",
    "file-loader": "^4.2.0",
    "mini-css-extract-plugin": "^0.4.0",
    "postcss": "^7.0.17",
    "postcss-cli": "^6.1.3",
    "postcss-csso": "^3.0.0",
    "postcss-custom-properties": "^8.0.9",
    "postcss-import": "^12.0.1",
    "postcss-loader": "^3.0.0",
    "pre-commit": "^1.2.2",
    "prop-types": "^15.6.1",
    "react": "^16.8.6",
    "react-docgen": "^4.1.1",
    "react-docgen-typescript": "^1.14.1",
    "react-dom": "^16.8.6",
    "react-frame-component": "^3.0.0",
    "react-styleguidist": "^10.2.1",
    "source-map-loader": "^0.2.4",
    "stylelint": "^10.1.0",
    "stylelint-config-standard": "^18.3.0",
    "ts-loader": "^6.0.4",
    "typescript": "3.7.5",
    "webpack": "^4.41.2",
    "webpack-cli": "^3.3.10",
    "webpack-merge": "^4.2.2"
  },
  "bin": {
    "generate_scheme": "./tasks/generate_scheme.js"
  },
  "peerDependencies": {
    "@babel/runtime": "^7.5.5",
    "@vkontakte/icons": "^1.20.2",
    "@vkontakte/vk-bridge": "^2.0.2",
    "prop-types": "^15.6.1",
    "react": "^16.8.6",
    "react-dom": "^16.8.6"
  },
  "scripts": {
    "release": "./tasks/release.sh",
    "styleguide": "NODE_ENV=development styleguidist server --config=styleguide/config.js",
    "styleguide:build": "NODE_ENV=production styleguidist build --config=styleguide/config.js",
    "dev": "yarn clear && yarn copy-default-scheme && concurrently \"yarn:tsc-dev\" \"yarn:babel-dev\" \"yarn:postcss-dev\"",
    "dev-es6": "yarn clear && yarn copy-default-scheme && concurrently \"yarn:tsc-dev\" \"yarn:babel-es6-dev\" \"yarn:postcss-dev\"",
    "postcss-dev": "postcss src/styles/styles.css --output dist/vkui.css --watch --verbose --no-map",
    "babel-dev": "babel src/ --out-dir dist/ --extensions .tsx,.jsx,.ts,.js --watch",
    "babel-es6-dev": "babel --config-file ./babel.es6.config.js src/ --out-dir dist/es6/ --extensions .tsx,.jsx,.ts,.js --watch",
    "tsc-dev": "tsc --noEmit --watch --preserveWatchOutput",
    "build": "yarn tsc && yarn babel && yarn tsc-es6 && yarn babel-es6 && yarn postcss && yarn copy-default-scheme",
    "postcss": "NODE_ENV=production postcss src/styles/styles.css --output dist/vkui.css --verbose",
    "babel": "NODE_ENV=production babel src/ --out-dir dist/ --source-maps --extensions .tsx,.jsx,.ts,.js",
    "babel-es6": "NODE_ENV=production babel --config-file ./babel.es6.config.js src/ --out-dir dist/es6/ --source-maps --extensions .tsx,.jsx,.ts,.js",
    "tsc": "NODE_ENV=production tsc --emitDeclarationOnly --declaration",
    "tsc-es6": "NODE_ENV=production tsc --emitDeclarationOnly --declaration --outDir dist/es6/",
    "clear": "rm -rf dist/*",
    "test": "tsc --noEmit && eslint --ext .jsx,.js,.ts,.tsx src/ && stylelint './src/**/*.css'",
    "copy-default-scheme": "cp ./src/styles/bright_light.css ./dist/default_scheme.css"
  },
  "pre-commit": [
    "test"
  ]
}
