44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"name": "@astrojs/prism",
|
|
"version": "2.1.2",
|
|
"description": "Add Prism syntax highlighting support to your Astro site",
|
|
"author": "withastro",
|
|
"type": "module",
|
|
"license": "MIT",
|
|
"bugs": "https://github.com/withastro/astro/issues",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/withastro/astro.git",
|
|
"directory": "packages/astro-prism"
|
|
},
|
|
"homepage": "https://docs.astro.build/en/reference/api-reference/#prism-",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
|
|
"build:ci": "astro-scripts build \"src/**/*.ts\"",
|
|
"dev": "astro-scripts dev \"src/**/*.ts\""
|
|
},
|
|
"exports": {
|
|
".": "./dist/index.js",
|
|
"./Prism.astro": "./Prism.astro",
|
|
"./dist/highlighter": "./dist/highlighter.js"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"Prism.astro"
|
|
],
|
|
"keywords": [
|
|
"astro",
|
|
"astro-component"
|
|
],
|
|
"dependencies": {
|
|
"prismjs": "^1.29.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/prismjs": "1.26.0",
|
|
"astro-scripts": "workspace:*"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.12.0"
|
|
}
|
|
}
|