-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.48 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.48 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
{
"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.21.1",
"@expressive-code/plugin-collapsible-sections": "workspace:^",
"@expressive-code/plugin-line-numbers": "workspace:^",
"astro": "^4.5.2",
"astro-expressive-code": "workspace:^",
"astro-og-canvas": "^0.4.2",
"expressive-code": "workspace:^",
"github-slugger": "^2.0.0",
"glob": "^10.3.10",
"mdast-util-from-markdown": "^2.0.0",
"mdast-util-to-markdown": "^2.1.0",
"mdast-util-to-string": "^4.0.0",
"sharp": "^0.32.5",
"starlight-links-validator": "^0.5.1",
"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.3.4"
},
"devDependencies": {
"@expressive-code/core": "workspace:^",
"@types/mdast": "^4.0.3"
},
"peerDependencies": {
"@expressive-code/core": "workspace:^"
}
}