-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 771 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 771 Bytes
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
{
"dependencies": {
"@astrojs/starlight": "0.37.7",
"astro": "5.18.0",
"katex": "0.16.37",
"rehype-katex": "7.0.1",
"remark-math": "6.0.0",
"sharp": "0.34.5",
"typescript": "5.9.3"
},
"devDependencies": {
"@astrojs/check": "0.9.6",
"@biomejs/biome": "2.4.6",
"prettier": "3.8.1",
"prettier-plugin-astro": "0.14.1"
},
"packageManager": "pnpm@10.31.0",
"scripts": {
"build": "astro build",
"check": "astro check",
"clean": "rm -rf node_modules/ dist/ .astro/",
"dev": "astro dev --host",
"format:check": "biome format && prettier --check .",
"format:fix": "biome format --fix && prettier --write .",
"lint:check": "biome lint",
"lint:fix": "biome lint --fix"
},
"type": "module"
}