7240f0d677
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>`} ```
17 lines
323 B
JSON
17 lines
323 B
JSON
{
|
|
"name": "www",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "astro dev .",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"astro": "file:../",
|
|
"prismjs": "^1.23.0"
|
|
}
|
|
}
|