UNPKG

starwind

Version:

Add beautifully designed components to your Astro applications

66 lines 1.64 kB
{ "name": "starwind", "version": "1.8.0", "description": "Add beautifully designed components to your Astro applications", "license": "MIT", "author": { "name": "webreaper", "url": "https://x.com/BowTiedWebReapr" }, "repository": { "type": "git", "url": "https://github.com/starwind-ui/starwind-ui.git", "directory": "packages/cli" }, "keywords": [ "starwind", "starwind ui", "starwind cli", "astro", "astro component", "astro ui", "astro ui library", "tailwind", "components", "add component" ], "type": "module", "bin": { "starwind": "./dist/index.js" }, "files": [ "dist" ], "dependencies": { "@clack/prompts": "0.11.0", "@starwind-ui/core": "1.8.0", "chalk": "5.4.1", "commander": "14.0.0", "execa": "9.6.0", "fs-extra": "11.2.0", "semver": "7.7.2", "zod": "3.25.74" }, "devDependencies": { "@types/fs-extra": "11.0.4", "@types/node": "24.0.10", "@types/prompts": "2.4.9", "@types/semver": "7.5.8", "tsup": "8.5.0" }, "engines": { "node": "^20.6.0 || >=22.0.0" }, "scripts": { "build": "tsup", "dev": "tsup --watch", "cli:link": "pnpm link --global", "cli:unlink": "pnpm rm --global starwind", "typecheck": "tsc --noEmit", "format:check": "prettier --check \"**/*.{ts,tsx,md,json}\"", "format:write": "prettier --write \"**/*.{ts,tsx,md,json}\" --cache", "publish:beta": "pnpm publish --tag beta --access public", "publish:next": "pnpm publish --tag next --access public", "publish:release": "pnpm publish --access public" } }