{
  "name": "@anedomansky/create-react-component-library",
  "version": "1.0.1",
  "description": "A starter for creating your own component libraries with react.",
  "main": "index.js",
  "type": "module",
  "keywords": [
    "react",
    "vite",
    "blueprints",
    "code generation"
  ],
  "author": "Alexander Nedomansky <anedomansky@gmail.com>",
  "license": "MIT",
  "bin": {
    "create-react-component-library": "./index.js"
  },
  "files": [
    "index.js",
    "template",
    "dist"
  ],
  "engines": {
    "node": "^18.0.0 || >=20.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/anedomansky/create-react-component-library.git"
  },
  "homepage": "https://github.com/anedomansky/create-react-component-library/tree/main#readme",
  "bugs": {
    "url": "https://github.com/anedomansky/create-react-component-library/issues"
  },
  "devDependencies": {
    "@types/minimist": "1.2.5",
    "@types/node": "22.5.1",
    "@types/prompts": "2.4.9",
    "minimist": "1.2.8",
    "prompts": "2.4.2",
    "typescript": "5.5.4",
    "unbuild": "2.0.0",
    "vitest": "2.0.5"
  },
  "scripts": {
    "preinstall": "npx only-allow pnpm",
    "dev": "unbuild --stub",
    "build": "unbuild",
    "typecheck": "tsc --noEmit",
    "prepublish": "pnpm run build",
    "test": "vitest"
  }
}