{
  "name": "rollup-plugin-vue",
  "version": "6.0.0",
  "license": "MIT",
  "main": "dist/index.js",
  "typings": "dist/index.d.ts",
  "author": "Rahul Kadyan <hi@znck.me> (https://znck.me)",
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsc -p .",
    "prepublishOnly": "tsc -p .",
    "dev": "tsc -w -p .",
    "test": "run-p test:*",
    "test:unit": "jest",
    "test:e2e": "jest --testMatch '**/*.e2e.ts'"
  },
  "dependencies": {
    "debug": "^4.1.1",
    "hash-sum": "^2.0.0",
    "rollup-pluginutils": "^2.8.2"
  },
  "peerDependencies": {
    "@vue/compiler-sfc": "*"
  },
  "devDependencies": {
    "@rollup/plugin-node-resolve": "^9.0.0",
    "@types/debug": "^4.1.5",
    "@types/hash-sum": "^1.0.0",
    "@types/jest": "^25.2.3",
    "@types/node": "^13.13.2",
    "@vue/compiler-sfc": "^3.0.3",
    "husky": "^4.2.0",
    "jest": "^26.0.1",
    "lint-staged": "^10.1.7",
    "npm-run-all": "^4.1.5",
    "prettier": "^2.0.5",
    "rollup": "^2.7.2",
    "rollup-plugin-postcss": "^3.1.8",
    "ts-jest": "^26.0.0",
    "typescript": "^3.9.3"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.{ts,js,json}": [
      "prettier --write"
    ]
  },
  "prettier": {
    "printWidth": 80,
    "trailingComma": "es5",
    "semi": false,
    "singleQuote": true
  }
}
