chore: Version bump, tweak commands in package.json
8aea516a
1 file(s) · +39 −24
| 1 | 1 | { |
|
| 2 | - | "name": "bhvr", |
|
| 3 | - | "version": "0.3.1", |
|
| 4 | - | "description": "A monorepo template built with Bun, Hono, Vite, and React", |
|
| 5 | - | "author": "Steve Simkins", |
|
| 6 | - | "license": "MIT", |
|
| 7 | - | "homepage": "https://github.com/stevedylandev/bhvr", |
|
| 8 | - | "packageManager": "bun@1.2.4", |
|
| 9 | - | "workspaces": ["./server", "./client", "./shared"], |
|
| 10 | - | "scripts": { |
|
| 11 | - | "dev": "turbo dev", |
|
| 12 | - | "build": "turbo build", |
|
| 13 | - | "lint": "turbo lint", |
|
| 14 | - | "type-check": "turbo type-check", |
|
| 15 | - | "test": "turbo test", |
|
| 16 | - | "postinstall": "turbo build --filter=shared --filter=server" |
|
| 17 | - | }, |
|
| 18 | - | "keywords": ["bun", "hono", "react", "vite", "monorepo", "turbo"], |
|
| 19 | - | "devDependencies": { |
|
| 20 | - | "bun-types": "latest", |
|
| 21 | - | "turbo": "^2.5.5" |
|
| 22 | - | }, |
|
| 23 | - | "peerDependencies": { |
|
| 24 | - | "typescript": "^5.7.3" |
|
| 25 | - | } |
|
| 2 | + | "name": "bhvr", |
|
| 3 | + | "version": "0.4.0", |
|
| 4 | + | "description": "A monorepo template built with Bun, Hono, Vite, and React", |
|
| 5 | + | "author": "Steve Simkins", |
|
| 6 | + | "license": "MIT", |
|
| 7 | + | "homepage": "https://github.com/stevedylandev/bhvr", |
|
| 8 | + | "packageManager": "bun@1.2.4", |
|
| 9 | + | "workspaces": [ |
|
| 10 | + | "./server", |
|
| 11 | + | "./client", |
|
| 12 | + | "./shared" |
|
| 13 | + | ], |
|
| 14 | + | "scripts": { |
|
| 15 | + | "dev": "turbo dev", |
|
| 16 | + | "dev:client": "turbo dev --filter=client", |
|
| 17 | + | "dev:server": "turbo dev --filter=server", |
|
| 18 | + | "build": "turbo build", |
|
| 19 | + | "build:client": "turbo build --filter=client", |
|
| 20 | + | "build:server": "turbo build --filter=server", |
|
| 21 | + | "lint": "turbo lint", |
|
| 22 | + | "type-check": "turbo type-check", |
|
| 23 | + | "test": "turbo test", |
|
| 24 | + | "postinstall": "turbo build --filter=shared --filter=server" |
|
| 25 | + | }, |
|
| 26 | + | "keywords": [ |
|
| 27 | + | "bun", |
|
| 28 | + | "hono", |
|
| 29 | + | "react", |
|
| 30 | + | "vite", |
|
| 31 | + | "monorepo", |
|
| 32 | + | "turbo" |
|
| 33 | + | ], |
|
| 34 | + | "devDependencies": { |
|
| 35 | + | "bun-types": "latest", |
|
| 36 | + | "turbo": "^2.5.5" |
|
| 37 | + | }, |
|
| 38 | + | "peerDependencies": { |
|
| 39 | + | "typescript": "^5.7.3" |
|
| 40 | + | } |
|
| 26 | 41 | } |