{
  "name": "@celement/cli",
  "version": "0.0.6",
  "license": "MIT",
  "type": "module",
  "types": "./dist/index.d.ts",
  "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/celement-js/cli",
  "bugs": {
    "url": "https://github.com/celement-js/cli/issues"
  },
  "engines": {
    "node": ">=14.16.0"
  },
  "bin": {
    "celement": "cli.js"
  },
  "files": [
    "cli.js",
    "src/",
    "dist/"
  ],
  "exports": {
    ".": "./dist/index.js",
    "./cli.js": "./cli.js",
    "./dist/*": "./dist/*",
    "./.temp/*": "./.temp/*",
    "./package.json": "./package.json"
  },
  "scripts": {
    "build": "rimraf dist && tsc -p tsconfig-build.json",
    "build:watch": "npm run build -- --watch",
    "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
    "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": "node .scripts/release.js"
  },
  "peerDependencies": {
    "typescript": "^4.5.5"
  },
  "dependencies": {
    "@types/fs-extra": "^9.0.13",
    "@types/normalize-path": "^3.0.0",
    "fast-glob": "^3.2.11",
    "fs-extra": "^10.0.0",
    "kleur": "^4.1.4",
    "normalize-path": "^3.0.0",
    "read-pkg-up": "^9.1.0",
    "upath": "^2.0.1",
    "yargs": "^17.3.1"
  },
  "devDependencies": {
    "@types/node": "^17.0.17",
    "@types/read-pkg-up": "^6.0.0",
    "@types/yargs": "^17.0.8",
    "@typescript-eslint/eslint-plugin": "^5.11.0",
    "@typescript-eslint/parser": "^5.11.0",
    "conventional-changelog-cli": "^2.2.2",
    "enquirer": "^2.3.6",
    "eslint": "^8.9.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-simple-import-sort": "^7.0.0",
    "execa": "^6.1.0",
    "husky": "^7.0.4",
    "lint-staged": "^12.3.4",
    "npm-run-all": "^4.1.5",
    "prettier": "^2.5.1",
    "pretty-quick": "^3.1.3",
    "rimraf": "^3.0.2",
    "typescript": "^4.5.5"
  },
  "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",
    "celement",
    "cli",
    "component",
    "discover",
    "docs",
    "documentation",
    "json",
    "lit",
    "markdown",
    "metadata",
    "parser",
    "pluggable",
    "plugins",
    "transformer",
    "typescript",
    "vscode",
    "web-components"
  ]
}
