summaryrefslogtreecommitdiff
path: root/examples/component/packages/my-component/package.json
blob: 47212b5583a0c294f11ab10128726ba3af126924 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "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"
  ]
}