2021-04-01 14:16:29 -05:00
|
|
|
{
|
2021-06-07 14:35:23 -05:00
|
|
|
"name": "@astrojs/prism",
|
2023-01-12 11:40:35 -05:00
|
|
|
"version": "2.0.0-beta.0",
|
2021-12-13 16:14:34 -05:00
|
|
|
"description": "Supports Prism highlighting in Astro projects",
|
|
|
|
"author": "withastro",
|
2022-08-02 14:53:18 -05:00
|
|
|
"type": "module",
|
2021-12-13 16:14:34 -05:00
|
|
|
"license": "MIT",
|
|
|
|
"bugs": "https://github.com/withastro/astro/issues",
|
2021-06-16 13:09:35 -05:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2021-11-23 17:47:05 -05:00
|
|
|
"url": "https://github.com/withastro/astro.git",
|
2021-06-16 13:09:35 -05:00
|
|
|
"directory": "packages/astro-prism"
|
|
|
|
},
|
2022-11-02 15:04:11 -05:00
|
|
|
"homepage": "https://docs.astro.build/en/reference/api-reference/#prism-",
|
2022-08-02 14:53:18 -05:00
|
|
|
"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\""
|
|
|
|
},
|
2021-04-01 14:16:29 -05:00
|
|
|
"exports": {
|
2022-08-02 14:53:18 -05:00
|
|
|
".": "./dist/index.js",
|
|
|
|
"./Prism.astro": "./Prism.astro",
|
|
|
|
"./dist/highlighter": "./dist/highlighter.js"
|
2021-04-01 14:16:29 -05:00
|
|
|
},
|
2022-08-02 14:53:18 -05:00
|
|
|
"keywords": [
|
|
|
|
"astro",
|
|
|
|
"astro-component"
|
|
|
|
],
|
|
|
|
"dependencies": {
|
2022-04-20 08:42:31 -05:00
|
|
|
"prismjs": "^1.28.0"
|
2021-06-14 07:20:14 -05:00
|
|
|
},
|
2022-08-02 14:53:18 -05:00
|
|
|
"devDependencies": {
|
|
|
|
"astro-scripts": "workspace:*",
|
|
|
|
"@types/prismjs": "1.26.0"
|
|
|
|
},
|
2021-06-14 07:20:14 -05:00
|
|
|
"engines": {
|
2023-01-09 16:59:20 -05:00
|
|
|
"node": ">=16.12.0"
|
2021-04-01 14:16:29 -05:00
|
|
|
}
|
|
|
|
}
|