create-bhvr
Version:
Create a new bhvr project
54 lines (53 loc) • 1.01 kB
JSON
{
"name": "create-bhvr",
"version": "0.3.12",
"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",
"start": "bun ./dist/index.js"
},
"keywords": [
"bun",
"vite",
"react",
"hono",
"monorepo",
"starter",
"template",
"create"
],
"author": "Steve Simkins",
"license": "MIT",
"devDependencies": {
"@types/degit": "^2.8.6",
"@types/figlet": "^1.7.0",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.11.17",
"@types/prompts": "^2.4.9",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"degit": "^2.8.4",
"execa": "^7.1.1",
"figlet": "^1.8.1",
"fs-extra": "^11.2.0",
"ora": "^6.3.1",
"prompts": "^2.4.2"
},
"engines": {
"node": ">=18"
}
}