howl/package.json
Corey Johnson 3954663270 make forge a peerDependency
fixes duplicate module instances when bundled

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-20 20:54:59 -08:00

20 lines
365 B
JSON

{
"name": "howl",
"module": "index.tsx",
"type": "module",
"exports": "./src/index.tsx",
"scripts": {
"dev": "bun run --hot test/server.tsx"
},
"devDependencies": {
"@types/bun": "latest",
"hono": "^4.10.7"
},
"peerDependencies": {
"typescript": "^5",
"forge": "*"
},
"dependencies": {
"lucide-static": "^0.555.0"
}
}