UNPKG

create-bun-stack

Version:

Rails-inspired fullstack application generator for Bun

67 lines (66 loc) 1.75 kB
{ "name": "create-bun-stack", "version": "1.0.9", "description": "Rails-inspired fullstack application generator for Bun", "keywords": [ "bun", "react", "typescript", "fullstack", "generator", "cli", "drizzle", "tailwind", "create-app", "scaffold" ], "author": "Jasen Carroll", "license": "MIT", "type": "module", "main": "cli.ts", "bin": { "create-bun-stack": "cli.ts" }, "files": [ "cli.ts", "templates/", "utils/", "README.md", "LICENSE" ], "scripts": { "typecheck": "bunx tsc --noEmit", "format": "bunx prettier --write .", "format:check": "bunx prettier --check .", "lint": "bunx @biomejs/biome check --write .", "lint:check": "bunx @biomejs/biome check .", "lint:fix": "bunx @biomejs/biome check --write --unsafe .", "check": "bun run typecheck && bun run format:check && bun run lint:check", "fix": "bun run format && bun run lint", "start": "bun cli.ts", "test": "bun test tests/unit tests/integration", "test:unit": "bun test tests/unit", "test:integration": "bun test tests/integration", "test:watch": "bun test --watch tests/unit tests/integration", "test:coverage": "bun test --coverage tests/unit tests/integration" }, "repository": { "type": "git", "url": "git+https://github.com/jasencarroll/create-bun-stack.git" }, "bugs": { "url": "https://github.com/jasencarroll/create-bun-stack/issues" }, "homepage": "https://bun-stack.jasenc.dev", "engines": { "bun": ">=1.0.0" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "devDependencies": { "@types/node": "^24.0.10", "bun-types": "^1.2.18" } }