{
  "name": "@wcom/cli",
  "version": "3.3.0",
  "license": "MIT",
  "author": "Rahim Alwer <rahim_alwer@outlook.com>",
  "description": "Pluggable CLI tool that collects metadata about your web components and transforms it into whatever you like.",
  "main": "dist/index.js",
  "homepage": "https://github.com/mihar-22/wcom-cli",
  "bugs": {
    "url": "https://github.com/mihar-22/wcom-cli/issues"
  },
  "bin": {
    "wcom": "cli.js"
  },
  "files": [
    "cli.js",
    "dist/"
  ],
  "scripts": {
    "build": "run-s clean build:cjs",
    "build:cjs": "tsc -m commonjs -p tsconfig-build.json",
    "build:watch": "npm run build:cjs -- --watch",
    "clean": "rimraf dist",
    "lint": "run-s lint:*",
    "lint:eslint": "eslint --ext .ts --quiet . --ignore-path .gitignore",
    "lint:prettier": "prettier . --check --ignore-path .gitignore --loglevel warn",
    "format": "run-s format:*",
    "format:eslint": "npm run lint:eslint -- --fix",
    "format:prettier": "npm run lint:prettier -- --write",
    "release": "npx semantic-release --branches main"
  },
  "peerDependencies": {
    "typescript": "^4.0.0"
  },
  "dependencies": {
    "@types/fs-extra": "^9.0.6",
    "@types/node": "^14.14.16",
    "@types/normalize-path": "^3.0.0",
    "@types/require-from-string": "^1.2.0",
    "custom-elements-manifest": "^0.1.0",
    "fast-glob": "^3.2.4",
    "fs-extra": "^9.0.1",
    "kleur": "^4.1.3",
    "normalize-path": "^3.0.0",
    "read-pkg-up": "^7.0.1",
    "require-from-string": "^2.0.2",
    "yargs": "^16.1.1"
  },
  "devDependencies": {
    "@types/read-pkg-up": "^6.0.0",
    "@types/yargs": "^15.0.10",
    "@typescript-eslint/eslint-plugin": "^4.9.0",
    "@typescript-eslint/parser": "^4.9.0",
    "eslint": "^7.14.0",
    "eslint-config-prettier": "^7.1.0",
    "eslint-plugin-simple-import-sort": "^7.0.0",
    "husky": "^4.3.8",
    "lint-staged": "^10.5.3",
    "lit-element": "^2.4.0",
    "npm-run-all": "^4.1.5",
    "prettier": "^2.2.1",
    "pretty-quick": "^3.1.0",
    "rimraf": "^3.0.2",
    "typescript": "^4.0.0"
  },
  "prettier": {
    "singleQuote": true,
    "trailingComma": "all",
    "arrowParens": "avoid"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.ts": "eslint --cache --fix",
    "*.{ts,md,json}": "prettier --write"
  },
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "analyzer",
    "cli",
    "component",
    "discover",
    "docs",
    "documentation",
    "json",
    "lit-element",
    "markdown",
    "metadata",
    "parser",
    "pluggable",
    "plugins",
    "transformer",
    "typescript",
    "vscode",
    "wcom",
    "web-components"
  ]
}
