{
  "name": "@viewfly/cli",
  "version": "3.0.3",
  "description": "A command-line tool for creating Viewfly project templates.",
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "typings": "./dist/index.d.ts",
  "files": [
    "bin/**/*",
    "dist/**/*",
    "templates/base-vite/.gitignore",
    "templates/base-vite/index.html",
    "templates/base-vite/public/**/*",
    "templates/base-vite/package.json",
    "templates/base-vite/src/**/*",
    "templates/base-vite/tsconfig.json",
    "templates/base-vite/vite.config.ts"
  ],
  "license": "MIT",
  "keywords": [],
  "dependencies": {
    "@inquirer/prompts": "^8.4.2",
    "chalk": "^5.6.2",
    "clear": "^0.1.0",
    "commander": "^14.0.3",
    "figlet": "^1.11.0",
    "fs-extra": "^11.3.4"
  },
  "devDependencies": {
    "@types/clear": "^0.1.4",
    "@types/figlet": "^1.7.0",
    "rimraf": "^6.0.1",
    "tslib": "^2.8.1",
    "typescript": "~5.8.3",
    "vite": "^8.0.9",
    "vite-plugin-dts": "^4.5.4"
  },
  "bin": {
    "viewfly": "bin/cli.js"
  },
  "author": {
    "name": "Tanbo",
    "email": "tanbohb@qq.com"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/viewfly/viewfly.git"
  },
  "bugs": {
    "url": "https://github.com/viewfly/viewfly/issues"
  },
  "scripts": {
    "build:lib": "rimraf dist && vite build --config vite.config.ts",
    "publish:lib": "npm run build:lib && npm publish --access=public"
  }
}