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