init
This commit is contained in:
commit
e30de7d675
4 changed files with 28 additions and 0 deletions
2
README.md
Normal file
2
README.md
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
# Flurry
|
||||||
|
A component library built for MinPluto.
|
2
index.ts
Normal file
2
index.ts
Normal 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
15
package.json
Normal 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
9
tsconfig.json
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"include": [
|
||||||
|
"./src",
|
||||||
|
"index.ts"
|
||||||
|
],
|
||||||
|
"compilerOptions": {
|
||||||
|
"jsx": "react"
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue