UNPKG

create-bhvr

Version:

Create a new bhvr project

61 lines (60 loc) 1.36 kB
{ "name": "create-bhvr", "version": "0.6.4", "description": "Create a new bhvr project", "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", "bin": { "create-bhvr": "./dist/index.js" }, "files": [ "dist" ], "scripts": { "build": "bun build src/index.ts --outdir dist --target node && cp -r src/templates dist/", "start": "bun ./dist/index.js", "test": "bun test", "test:watch": "bun test --watch", "test:coverage": "bun test --coverage", "lint": "biome lint --write src package.json", "lint:check": "biome lint src package.json", "format": "biome format --write src package.json", "format:check": "biome format src package.json" }, "keywords": [ "bun", "vite", "react", "hono", "monorepo", "starter", "template", "create" ], "author": "Steve Simkins", "license": "MIT", "devDependencies": { "@biomejs/biome": "2.2.4", "@types/degit": "^2.8.6", "@types/figlet": "^1.7.0", "@types/fs-extra": "^11.0.4", "@types/inquirer": "^9.0.9", "@types/node": "^20.19.10", "@types/prompts": "^2.4.9", "ts-node": "^10.9.2", "typescript": "^5.9.2" }, "dependencies": { "commander": "^11.1.0", "consola": "^3.4.2", "degit": "^2.8.4", "execa": "^7.2.0", "fs-extra": "^11.3.1", "picocolors": "^1.1.1", "yocto-spinner": "^1.0.0" }, "engines": { "node": ">=18" } }