{
  "name": "@opentiny/vue-theme-mobile",
  "version": "1.0.2",
  "description": "An enterprise-class UI component library, support both Vue.js 2 and Vue.js 3, as well as PC and mobile.",
  "homepage": "https://opentiny.design/tiny-vue",
  "main": "index.css",
  "keywords": [
    "vue",
    "vue3",
    "frontend",
    "component-library",
    "components",
    "vue-components",
    "opentiny",
    "renderless-components",
    "headless-components"
  ],
  "author": "OpenTiny Team",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git@github.com:opentiny/tiny-vue.git"
  },
  "bugs": {
    "url": "https://github.com/opentiny/tiny-vue/issues"
  },
  "devDependencies": {
    "@babel/cli": "^7.5.5",
    "@babel/core": "^7.5.5",
    "@babel/preset-env": "^7.5.5",
    "gulp": "^4.0.2",
    "gulp-autoprefixer": "^7.0.1",
    "gulp-clean-css": "^4.2.0",
    "gulp-less": "^5.0.0",
    "rimraf": "^2.6.2",
    "stylelint": "^14.14.0",
    "stylelint-config-standard": "^29.0.0"
  },
  "stylelint": {
    "extends": [
      "stylelint-config-standard"
    ],
    "overrides": [
      {
        "files": [
          "**/*.less"
        ],
        "customSyntax": "postcss-less"
      }
    ],
    "rules": {
      "selector-pseudo-element-colon-notation": "single",
      "import-notation": null,
      "string-quotes": "single",
      "custom-property-pattern": null,
      "selector-class-pattern": null,
      "declaration-empty-line-before": null,
      "at-rule-empty-line-before": null,
      "at-rule-no-unknown": [
        true,
        {
          "ignoreAtRules": [
            "apply",
            "variants",
            "responsive",
            "screen"
          ]
        }
      ]
    }
  },
  "scripts": {
    "clean": "rimraf dist",
    "build:theme": "gulp build --gulpfile build/gulp-dist.js",
    "build": "npm run clean && npm run build:theme",
    "build:fast": "npm run build && npm run release",
    "publishTgz": "node .cloudbuild/publish-tgzs.js",
    "stylelint": "stylelint \"**/*.less\" --fix",
    "release": "node build/release.js && node build/postbuild.js && shx cp README.md dist"
  }
}