This commit is contained in:
Korbs 2024-08-15 20:37:11 -04:00
commit e30de7d675
4 changed files with 28 additions and 0 deletions

2
README.md Normal file
View file

@ -0,0 +1,2 @@
# Flurry
A component library built for MinPluto.

2
index.ts Normal file
View file

@ -0,0 +1,2 @@
// export { default as Card } from "./src/Card.astro"
// export { default as Header } from "./src/Header.astro"

15
package.json Normal file
View file

@ -0,0 +1,15 @@
{
"name": "@minpluto/flurry",
"type": "module",
"version": "0.0.1",
"exports": {
".": "./index.ts"
},
"files": [
"index.ts",
"src/*"
],
"publishConfig": {
"access": "public"
}
}

9
tsconfig.json Normal file
View file

@ -0,0 +1,9 @@
{
"include": [
"./src",
"index.ts"
],
"compilerOptions": {
"jsx": "react"
}
}