{
  "name": "@cm-iv/generate-project",
  "version": "2.1.0",
  "description": "A CLI to bootstrap new projects",
  "main": "index.js",
  "scripts": {
    "dev": "tsx index.ts",
    "build": "tsup index.ts --format esm --target esnext && rm -rf bin/templates && cp -r ./templates bin"
  },
  "type": "module",
  "bin": {
    "@cm-iv/generate-project": "bin/index.js",
    "generate-project": "bin/index.js"
  },
  "publishConfig": {
    "access": "public"
  },
  "tsup": {
    "entry": [
      "index.ts"
    ],
    "splitting": false,
    "sourcemap": true,
    "outDir": "bin",
    "clean": true
  },
  "keywords": [
    "cli",
    "interface",
    "generate-project"
  ],
  "author": "CM-IV",
  "license": "GPL-3.0-or-later",
  "devDependencies": {
    "@types/fs-extra": "^11.0.2",
    "@types/node": "^20.6.1",
    "@types/shelljs": "^0.8.11",
    "tsup": "^7.2.0",
    "tsx": "^3.12.1"
  },
  "dependencies": {
    "consola": "^3.2.3",
    "fs-extra": "^11.1.1",
    "pathe": "^1.1.1",
    "shelljs": "^0.8.5",
    "ufo": "^1.3.0"
  }
}
