{
  "name": "create-defuss",
  "version": "1.0.11",
  "type": "module",
  "publishConfig": {
    "access": "public"
  },
  "license": "MIT",
  "description": "Checks out git projects from sub-directories. Originally for jump-starting defuss projects from templates.",
  "keywords": [
    "git",
    "sparse-checkout",
    "template",
    "typescript"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/kyr0/defuss.git"
  },
  "scripts": {
    "clean": "rm -rf ./dist",
    "pretest": "bun run build",
    "prebuild": "bun run clean",
    "build": "pkgroll --minify --sourcemap",
    "test": "bun run build && node ./dist/e2e.mjs",
    "prepublishOnly": "bun run test"
  },
  "author": "Aron Homberg <info@aron-homberg.de>",
  "exports": {
    ".": {
      "types": "./dist/cli.d.ts",
      "import": "./dist/cli.mjs",
      "require": "./dist/cli.cjs"
    },
    "./e2e": {
      "import": "./dist/e2e.mjs"
    }
  },
  "bin": {
    "create-defuss": "./dist/cli.mjs"
  },
  "main": "./dist/cli.cjs",
  "module": "./dist/cli.mjs",
  "types": "./dist/cli.d.ts",
  "files": [
    "dist",
    "assets"
  ],
  "devDependencies": {
    "pkgroll": "^2.21.5",
    "typescript": "^5.9.3"
  }
}