astro/astro-prism/package.json
Matthew Phillips 7240f0d677
Create a astro/components/ folder (#63)
This adds astro/components/ and moves the Prism.astro component into there. So to use in a project you can do:

```html
---
import Prism from 'astro/components/Prism.astro';
---

<Prism lang="html" code={`<html> ... </html>`}
```
2021-04-06 15:27:42 -04:00

19 lines
376 B
JSON

{
"name": "astro-prism",
"version": "1.0.0",
"description": "This is not published at this time.",
"main": "index.mjs",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"exports": {
".": "./index.mjs"
},
"keywords": [],
"private": true,
"author": "",
"license": "ISC",
"devDependencies": {
"prismjs": "^1.23.0"
}
}