-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.4 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@astropub/code",
"description": "A lightweight Astro component for syntax highlighting and rendering beautifully formatted code blocks.",
"version": "0.4.2",
"type": "module",
"license": "MIT-0",
"exports": {
".": "./code.astro",
"./highlight": "./scripts/highlight.ts",
"./prism": "./scripts/prism.ts",
"./prism/lang/css": "./scripts/prism-lang-css-extras.ts",
"./prism/lang/html": "./scripts/prism-lang-html.ts",
"./prism/lang/js": "./scripts/prism-lang-js-extras.ts",
"./prism/lang/json": "./scripts/prism-lang-json.ts",
"./prism/lang/sh": "./scripts/prism-lang-sh.ts",
"./prism/lang/svg": "./scripts/prism-lang-svg.ts",
"./prism/lang/ts": "./scripts/prism-lang-ts.ts",
"./prism/lang/tsx": "./scripts/prism-lang-tsx.ts",
"./prism/lang/xml": "./scripts/prism-lang-xml.ts",
"./types": "./types.ts"
},
"files": [
"code.astro",
"types.ts",
"scripts"
],
"devDependencies": {
"astro": "^5"
},
"keywords": [
"astro",
"astro-component",
"code-highlighting",
"syntax-highlighting",
"prism",
"prismjs",
"code-block",
"web-development",
"frontend",
"javascript",
"typescript",
"html",
"css",
"markdown",
"developer-tools"
],
"packageManager": "[email protected]+sha512.22721b3a11f81661ae1ec68ce1a7b879425a1ca5b991c975b074ac220b187ce56c708fe5db69f4c962c989452eee76c82877f4ee80f474cebd61ee13461b6228"
}