commit e30de7d675ba3618d8681bdae3b5155e35e65b2a Author: Korbs Date: Thu Aug 15 20:37:11 2024 -0400 init diff --git a/README.md b/README.md new file mode 100644 index 0000000..b1f2ab0 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# Flurry +A component library built for MinPluto. \ No newline at end of file diff --git a/index.ts b/index.ts new file mode 100644 index 0000000..3c74ba6 --- /dev/null +++ b/index.ts @@ -0,0 +1,2 @@ +// export { default as Card } from "./src/Card.astro" +// export { default as Header } from "./src/Header.astro" \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..ee59b05 --- /dev/null +++ b/package.json @@ -0,0 +1,15 @@ +{ + "name": "@minpluto/flurry", + "type": "module", + "version": "0.0.1", + "exports": { + ".": "./index.ts" + }, + "files": [ + "index.ts", + "src/*" + ], + "publishConfig": { + "access": "public" + } +} \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..0682c6f --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,9 @@ +{ + "include": [ + "./src", + "index.ts" + ], + "compilerOptions": { + "jsx": "react" + } +} \ No newline at end of file