89f335b539
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
40 lines
1 KiB
JSON
40 lines
1 KiB
JSON
{
|
|
"name": "@astrojs/prism",
|
|
"version": "1.0.2",
|
|
"description": "Supports Prism highlighting in Astro projects",
|
|
"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"
|
|
},
|
|
"keywords": [
|
|
"astro",
|
|
"astro-component"
|
|
],
|
|
"dependencies": {
|
|
"prismjs": "^1.28.0"
|
|
},
|
|
"devDependencies": {
|
|
"astro-scripts": "workspace:*",
|
|
"@types/prismjs": "1.26.0"
|
|
},
|
|
"engines": {
|
|
"node": "^14.18.0 || >=16.12.0"
|
|
}
|
|
}
|