broccoli-cli 0.1.2

CLI for scaffolding and building Broccoli plugins
Documentation
{
  "name": "@broccoli/plugin-{{plugin_name}}",
  "version": "0.1.0",
  "private": true,
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": ["dist"],
  "scripts": {
    "preinstall": "npx only-allow pnpm",
    "build": "tsup src/index.tsx src/styles.css --format esm --dts --external react",
    "dev": "tsup src/index.tsx src/styles.css --format esm --external react --watch --sourcemap"
  },
  "dependencies": {
    "@broccoli/web-sdk": "{{web_sdk_dep}}"
  },
  "peerDependencies": {
    "react": "^18.0.0 || ^19.0.0"
  },
  "devDependencies": {
    "@types/react": "^19.1.16",
    "autoprefixer": "^10.4.0",
    "postcss": "^8.4.0",
    "tailwindcss": "^3.4.0",
    "tsup": "^8.5.0",
    "typescript": "~5.9.3"
  }
}