{
  "name": "@timeax/scaffold",
  "private": false,
  "version": "0.1.3",
  "description": "A CLI tool that scaffolds project file structures based on a user-defined, type-safe configuration file.",
  "keywords": [
    "scaffold"
  ],
  "homepage": "https://github.com/timeax/scaffold#readme",
  "bugs": {
    "url": "https://github.com/timeax/scaffold/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/timeax/scaffold.git"
  },
  "license": "MIT",
  "author": "Timothy Okpako David",
  "type": "module",
  "main": "dist/index.mjs",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./ast": {
      "import": {
        "types": "./dist/ast.d.ts",
        "default": "./dist/ast.mjs"
      },
      "require": {
        "types": "./dist/ast.d.cts",
        "default": "./dist/ast.cjs"
      }
    }
  },
  "bin": {
    "scaffold": "dist/cli.mjs"
  },
  "scripts": {
    "build": "tsup",
    "build:watch": "tsup --watch",
    "scaffold": "node ./dist/cli.mjs",
    "dev:cli": "ts-node src/cli/main.ts",
    "prepublishOnly": "npm run build && node ./scripts/prepublish.mjs",
    "postpublish": "node ./scripts/postpublish.mjs",
    "test": "vitest"
  },
  "devDependencies": {
    "@types/node": "^24.10.1",
    "@types/pluralize": "^0.0.33",
    "prettier": "^3.7.1",
    "tsup": "^8.5.1",
    "typescript": "^5.9.3",
    "vitest": "^4.0.14"
  },
  "dependencies": {
    "chokidar": "^5.0.0",
    "commander": "^14.0.2",
    "esbuild": "^0.27.0",
    "minimatch": "^10.1.1",
    "pluralize": "^8.0.0"
  }
}
