-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.65 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.65 KB
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
50
51
{
"name": "@internal/docs",
"version": "0.0.1",
"private": true,
"description": "Documentation website for Expressive Code",
"keywords": [],
"author": "Tibor Schiemann",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "astro dev",
"build": "pnpm api && pnpm release-notes && astro build",
"preview": "astro preview",
"api": "tsm --require=../scripts/lib/filter-warnings.cjs ./scripts/api-reference.ts",
"release-notes": "tsm --require=../scripts/lib/filter-warnings.cjs ./scripts/release-notes.ts"
},
"dependencies": {
"@astrojs/starlight": "^0.31.0",
"@expressive-code/plugin-collapsible-sections": "workspace:^",
"@expressive-code/plugin-line-numbers": "workspace:^",
"@shikijs/colorized-brackets": "^2.0.3",
"astro": "^5.1.7",
"astro-expressive-code": "workspace:^",
"astro-og-canvas": "^0.5.6",
"expressive-code": "workspace:^",
"github-slugger": "^2.0.0",
"glob": "^11.0.1",
"mdast-util-from-markdown": "^2.0.2",
"mdast-util-to-markdown": "^2.1.2",
"mdast-util-to-string": "^4.0.0",
"sharp": "^0.33.5",
"starlight-links-validator": "^0.14.1",
"starlight-llms-txt": "^0.3.0",
"starlight-showcases": "^0.3.0",
"typedoc": "^0.25.4",
"typedoc-plugin-markdown": "^4.0.0-next.21",
"typedoc-plugin-missing-exports": "^2.1.0",
"typedoc-plugin-rename-defaults": "^0.7.0",
"unist-util-visit": "^4.1.2",
"yaml": "^2.7.0"
},
"devDependencies": {
"@expressive-code/core": "workspace:^",
"@types/mdast": "^4.0.4",
"shiki": "^3.2.2",
"typescript": "~5.3.3"
},
"peerDependencies": {
"@expressive-code/core": "workspace:^"
}
}