{
  "name": "components-helper",
  "version": "2.2.0",
  "description": "Based on the docs to provide code prompt files for vue component library",
  "type": "module",
  "main": "lib/index.cjs",
  "module": "lib/index.js",
  "types": "lib/index.d.ts",
  "exports": {
    ".": {
      "import": "./lib/index.js",
      "require": "./lib/index.cjs"
    }
  },
  "scripts": {
    "dev": "rollup -c rollup.config.js -w",
    "build": "rollup -c rollup.config.js",
    "test": "node test/index.js",
    "lint": "eslint . --fix --ext .ts,.js --ignore-pattern \"/lib/\"",
    "prettier": "prettier --write \"src/*.ts\" --ignore-unknown",
    "prepare": "husky install"
  },
  "files": [
    "lib"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/tolking/components-helper.git"
  },
  "keywords": [
    "vue",
    "components",
    "component library",
    "helper",
    "vetur",
    "webstrom",
    "tags",
    "attributes",
    "web-types"
  ],
  "author": "tolking <qw13131wang@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/tolking/components-helper/issues"
  },
  "homepage": "https://github.com/tolking/components-helper#readme",
  "engines": {
    "node": ">=16.0.0"
  },
  "dependencies": {
    "fast-glob": "^3.3.2"
  },
  "devDependencies": {
    "@types/node": "^18.0.6",
    "@typescript-eslint/eslint-plugin": "^5.10.0",
    "@typescript-eslint/parser": "^5.10.0",
    "eslint": "^8.7.0",
    "eslint-plugin-prettier": "^4.0.0",
    "husky": "^8.0.1",
    "lint-staged": "^13.0.3",
    "prettier": "^2.5.1",
    "rollup": "^2.66.0",
    "rollup-plugin-typescript2": "^0.32.1",
    "tslib": "^2.4.0",
    "typescript": "^4.5.5"
  },
  "lint-staged": {
    "*.{ts,js}": [
      "eslint --fix",
      "prettier --write"
    ]
  }
}
