Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 231513d511 | |||
| bf21731d4d |
12
package.json
12
package.json
|
|
@ -1,14 +1,8 @@
|
|||
{
|
||||
"name": "@because/howl",
|
||||
"version": "0.0.3",
|
||||
"module": "src/index.tsx",
|
||||
"name": "howl",
|
||||
"module": "index.tsx",
|
||||
"type": "module",
|
||||
"exports": "./src/index.tsx",
|
||||
"files": [
|
||||
"src",
|
||||
"!src/**/*.test.*",
|
||||
"README.md"
|
||||
],
|
||||
"scripts": {
|
||||
"dev": "bun run --hot test/server.tsx"
|
||||
},
|
||||
|
|
@ -18,7 +12,7 @@
|
|||
},
|
||||
"peerDependencies": {
|
||||
"typescript": "^5",
|
||||
"@because/forge": "*"
|
||||
"forge": "*"
|
||||
},
|
||||
"dependencies": {
|
||||
"lucide-static": "^0.555.0"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { define } from '@because/forge'
|
||||
import { define } from 'forge'
|
||||
import { theme } from './theme'
|
||||
import { Section } from './section'
|
||||
import { H2, Text } from './text'
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { define } from '@because/forge'
|
||||
import { define } from 'forge'
|
||||
import { theme } from './theme'
|
||||
|
||||
export const Box = define('Box', {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { define } from '@because/forge'
|
||||
import { define } from 'forge'
|
||||
import { theme } from './theme'
|
||||
import { VStack, HStack } from './stack'
|
||||
import { Section } from './section'
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { define } from '@because/forge'
|
||||
import { define } from 'forge'
|
||||
import { theme } from './theme'
|
||||
|
||||
// Code block container
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { define } from '@because/forge'
|
||||
import { define } from 'forge'
|
||||
import { theme } from './theme'
|
||||
import { Section } from './section'
|
||||
import { H2 } from './text'
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { define } from '@because/forge'
|
||||
import { define } from 'forge'
|
||||
import { theme } from './theme'
|
||||
import { VStack, HStack } from './stack'
|
||||
import { Button } from './button'
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { define } from '@because/forge'
|
||||
import { define } from 'forge'
|
||||
import { theme } from './theme'
|
||||
import * as icons from 'lucide-static'
|
||||
import { Grid } from './grid'
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { define } from '@because/forge'
|
||||
import { define } from 'forge'
|
||||
import { Section } from './section'
|
||||
import { H2, H3, H4, H5, Text } from './text'
|
||||
import { VStack, HStack } from './stack'
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
// Re-export Forge utilities
|
||||
export { Styles, extendThemes } from '@because/forge'
|
||||
export { Styles, extendThemes } from 'forge'
|
||||
export { theme } from './theme'
|
||||
|
||||
export { cn } from './cn'
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { define } from '@because/forge'
|
||||
import { define } from 'forge'
|
||||
import { theme } from './theme'
|
||||
import { Section } from './section'
|
||||
import { H2 } from './text'
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { define } from '@because/forge'
|
||||
import { define } from 'forge'
|
||||
import { theme } from './theme'
|
||||
|
||||
// Dark mode toggle button
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { define } from '@because/forge'
|
||||
import { define } from 'forge'
|
||||
import { theme } from './theme'
|
||||
|
||||
export const Section = define('Section', {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { define } from '@because/forge'
|
||||
import { define } from 'forge'
|
||||
import { theme } from './theme'
|
||||
import { Section } from './section'
|
||||
import { H2 } from './text'
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { define } from '@because/forge'
|
||||
import { define } from 'forge'
|
||||
import { theme } from './theme'
|
||||
import { H2 } from './text'
|
||||
import { RedBox, GreenBox, BlueBox } from './box'
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { define } from '@because/forge'
|
||||
import { define } from 'forge'
|
||||
import { theme } from './theme'
|
||||
|
||||
export const H1 = define('H1', {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { createThemes } from '@because/forge'
|
||||
import { createThemes } from 'forge'
|
||||
|
||||
const lightTheme = {
|
||||
// Colors
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
import "hono/jsx"
|
||||
import { raw } from "hono/html"
|
||||
import { Styles } from '@because/forge'
|
||||
import { Styles } from "forge"
|
||||
import {
|
||||
DarkModeToggle,
|
||||
PageTitle,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user