| 1 | { |
| 2 | "name": "create-bhvr", |
| 3 | "version": "0.6.4", |
| 4 | "description": "Create a new bhvr project", |
| 5 | "type": "module", |
| 6 | "main": "./dist/index.js", |
| 7 | "types": "./dist/index.d.ts", |
| 8 | "bin": { |
| 9 | "create-bhvr": "./dist/index.js" |
| 10 | }, |
| 11 | "files": [ |
| 12 | "dist" |
| 13 | ], |
| 14 | "scripts": { |
| 15 | "build": "bun build src/index.ts --outdir dist --target node && cp -r src/templates dist/", |
| 16 | "start": "bun ./dist/index.js", |
| 17 | "test": "bun test", |
| 18 | "test:watch": "bun test --watch", |
| 19 | "test:coverage": "bun test --coverage", |
| 20 | "lint": "biome lint --write src package.json", |
| 21 | "lint:check": "biome lint src package.json", |
| 22 | "format": "biome format --write src package.json", |
| 23 | "format:check": "biome format src package.json" |
| 24 | }, |
| 25 | "keywords": [ |
| 26 | "bun", |
| 27 | "vite", |
| 28 | "react", |
| 29 | "hono", |
| 30 | "monorepo", |
| 31 | "starter", |
| 32 | "template", |
| 33 | "create" |
| 34 | ], |
| 35 | "author": "Steve Simkins", |
| 36 | "license": "MIT", |
| 37 | "devDependencies": { |
| 38 | "@biomejs/biome": "2.2.4", |
| 39 | "@types/degit": "^2.8.6", |
| 40 | "@types/figlet": "^1.7.0", |
| 41 | "@types/fs-extra": "^11.0.4", |
| 42 | "@types/inquirer": "^9.0.9", |
| 43 | "@types/node": "^20.19.10", |
| 44 | "@types/prompts": "^2.4.9", |
| 45 | "ts-node": "^10.9.2", |
| 46 | "typescript": "^5.9.2" |
| 47 | }, |
| 48 | "dependencies": { |
| 49 | "commander": "^11.1.0", |
| 50 | "consola": "^3.4.2", |
| 51 | "degit": "^2.8.4", |
| 52 | "execa": "^7.2.0", |
| 53 | "fs-extra": "^11.3.1", |
| 54 | "picocolors": "^1.1.1", |
| 55 | "yocto-spinner": "^1.0.0" |
| 56 | }, |
| 57 | "engines": { |
| 58 | "node": ">=18" |
| 59 | } |
| 60 | } |