033b70a7f8
* Add Component Example * chore(lint): Prettier fix * nit: improve implementation * nit: Update documentation Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
22 lines
370 B
JSON
22 lines
370 B
JSON
{
|
|
"name": "@example/my-component",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./index.js",
|
|
"./Button": "./Button.astro",
|
|
"./Heading": "./Heading.astro"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"Button.astro",
|
|
"Heading.jsx"
|
|
],
|
|
"keywords": [
|
|
"astro-component",
|
|
"button",
|
|
"heading",
|
|
"example"
|
|
]
|
|
}
|