1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {
- "name": "@astrojs/prism",
- "version": "3.0.0",
- "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 -p ./tsconfig.json",
- "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.3",
- "astro-scripts": "workspace:*"
- },
- "engines": {
- "node": ">=18.14.1"
- }
- }
|