astro/packages/astro-prism/package.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
1.1 KiB
JSON
Raw Normal View History

{
"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",
2021-11-23 22:47:05 +00:00
"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"
},
2023-05-17 08:54:00 +00:00
"files": [
"dist",
"Prism.astro"
],
"keywords": [
"astro",
"astro-component"
],
"dependencies": {
"prismjs": "^1.28.0"
2021-06-14 12:20:14 +00:00
},
"devDependencies": {
"astro-scripts": "workspace:*",
"@types/prismjs": "1.26.0"
},
2021-06-14 12:20:14 +00:00
"engines": {
"node": ">=16.12.0"
}
}