{
  "name": "@resuml/cli",
  "version": "1.1.2",
  "description": "Generate JSON resumes from YAML with theme support",
  "private": false,
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "resuml": "./bin/resuml.cjs"
  },
  "files": [
    "bin",
    "dist",
    "README.md"
  ],
  "scripts": {
    "clean": "rimraf dist",
    "build": "tsup",
    "lint": "eslint src --ext .ts",
    "format": "prettier --write \"src/**/*.ts\"",
    "test": "npm run build && vitest run",
    "test:watch": "vitest watch",
    "test:coverage": "vitest run --coverage"
  },
  "dependencies": {
    "commander": "^11.1.0",
    "js-yaml": "^4.1.0"
  },
  "devDependencies": {
    "@types/js-yaml": "^4.0.9",
    "@types/node": "^20.11.19",
    "ts-node": "^10.9.2",
    "@typescript-eslint/eslint-plugin": "^7.0.1",
    "eslint": "^8.56.0",
    "prettier": "^3.2.5",
    "rimraf": "^5.0.5",
    "tsup": "^8.0.2",
    "tsx": "^4.15.0",
    "typescript": "^5.0.0",
    "vitest": "^1.2.2"
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "license": "ISC",
  "repository": {
    "type": "git",
    "url": "https://github.com/phoinixi/resuml.git",
    "directory": "packages/cli"
  },
  "bugs": {
    "url": "https://github.com/phoinixi/resuml/issues"
  },
  "homepage": "https://github.com/phoinixi/resuml#readme",
  "keywords": [
    "resume",
    "cv",
    "yaml",
    "json-resume",
    "cli",
    "curriculum-vitae"
  ],
  "author": "phoinixi",
  "publishConfig": {
    "access": "public"
  }
}
