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