2021-04-01 15:16:29 -04:00
|
|
|
{
|
2021-06-07 15:35:23 -04:00
|
|
|
"name": "@astrojs/prism",
|
2023-08-03 08:17:43 -07:00
|
|
|
"version": "3.0.0-beta.0",
|
2023-03-13 11:25:47 -03:00
|
|
|
"description": "Add Prism syntax highlighting support to your Astro site",
|
2021-12-13 22:14:34 +01:00
|
|
|
"author": "withastro",
|
2022-08-02 15:53:18 -04:00
|
|
|
"type": "module",
|
2021-12-13 22:14:34 +01:00
|
|
|
"license": "MIT",
|
|
|
|
"bugs": "https://github.com/withastro/astro/issues",
|
2021-06-16 13:09:35 -05:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2021-11-23 14:47:05 -08:00
|
|
|
"url": "https://github.com/withastro/astro.git",
|
2021-06-16 13:09:35 -05:00
|
|
|
"directory": "packages/astro-prism"
|
|
|
|
},
|
2022-11-02 21:04:11 +01:00
|
|
|
"homepage": "https://docs.astro.build/en/reference/api-reference/#prism-",
|
2022-08-02 15:53:18 -04:00
|
|
|
"main": "dist/index.js",
|
|
|
|
"scripts": {
|
2023-07-24 20:47:07 +02:00
|
|
|
"build": "astro-scripts build \"src/**/*.ts\" && tsc -p ./tsconfig.json",
|
2022-08-02 15:53:18 -04:00
|
|
|
"build:ci": "astro-scripts build \"src/**/*.ts\"",
|
|
|
|
"dev": "astro-scripts dev \"src/**/*.ts\""
|
|
|
|
},
|
2021-04-01 15:16:29 -04:00
|
|
|
"exports": {
|
2022-08-02 15:53:18 -04:00
|
|
|
".": "./dist/index.js",
|
|
|
|
"./Prism.astro": "./Prism.astro",
|
|
|
|
"./dist/highlighter": "./dist/highlighter.js"
|
2021-04-01 15:16:29 -04:00
|
|
|
},
|
2023-05-17 16:54:00 +08:00
|
|
|
"files": [
|
|
|
|
"dist",
|
|
|
|
"Prism.astro"
|
|
|
|
],
|
2022-08-02 15:53:18 -04:00
|
|
|
"keywords": [
|
|
|
|
"astro",
|
|
|
|
"astro-component"
|
|
|
|
],
|
|
|
|
"dependencies": {
|
2023-06-21 21:09:49 +08:00
|
|
|
"prismjs": "^1.29.0"
|
2021-06-14 05:20:14 -07:00
|
|
|
},
|
2022-08-02 15:53:18 -04:00
|
|
|
"devDependencies": {
|
2023-06-21 21:09:49 +08:00
|
|
|
"@types/prismjs": "1.26.0",
|
|
|
|
"astro-scripts": "workspace:*"
|
2022-08-02 15:53:18 -04:00
|
|
|
},
|
2021-06-14 05:20:14 -07:00
|
|
|
"engines": {
|
2023-07-24 20:47:07 +02:00
|
|
|
"node": ">=18.14.1"
|
2021-04-01 15:16:29 -04:00
|
|
|
}
|
|
|
|
}
|