Compare commits

...

2 Commits

Author SHA1 Message Date
6f99e4b08e don't depend on hono 2026-01-16 13:40:31 -08:00
bec56d8815 be honest 2026-01-16 08:40:20 -08:00
3 changed files with 7 additions and 7 deletions

View File

@ -1,6 +1,9 @@
# 🐺 howl
Howl is a fork of `werewolf-ui`, without any Tailwind. A minimal, zero-dependency React component library.
Howl is a fork of `werewolf-ui`, without any Tailwind.
A minimal, single-dependency component library built on forge
for hype/hono.
## Installation

View File

@ -7,14 +7,14 @@
"dev": "bun run --hot test/server.tsx"
},
"devDependencies": {
"@types/bun": "latest"
"@types/bun": "latest",
"hono": "^4.10.7"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"forge": "git+https://git.nose.space/defunkt/forge",
"hono": "^4.10.7",
"lucide-static": "^0.555.0"
}
}

View File

@ -1,6 +1,3 @@
import "hono/jsx"
import type { JSX } from "hono/jsx"
export type TailwindSize = 0 | 0.5 | 1 | 1.5 | 2 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96
/**
@ -9,6 +6,6 @@ export type TailwindSize = 0 | 0.5 | 1 | 1.5 | 2 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7
export type CommonHTMLProps = {
class?: string
id?: string
style?: JSX.CSSProperties
style?: Record<string, unknown>
ref?: any
}