-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
48 lines (48 loc) · 1.07 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
{
"name": "bws",
"license": "UNLICENSED",
"private": true,
"type": "module",
"version": "0.0.0",
"scripts": {
"check": "prettier . --check && cspell --dot --gitignore **/*.astro **/*.md* && astro check",
"fmt": "prettier . --write",
"build": "astro build",
"dev": "astro dev",
"start": "astro dev",
"preview": "astro preview",
"astro": "astro"
},
"prettier": {
"semi": false,
"plugins": [
"prettier-plugin-astro"
],
"overrides": [
{
"files": "*.astro",
"options": {
"parser": "astro"
}
}
]
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/markdown-remark": "^5.3.0",
"@astrojs/mdx": "^3.1.9",
"@astrojs/sitemap": "^3.2.1",
"@pagefind/default-ui": "^1.2.0",
"astro": "^4.16.18",
"pagefind": "^1.2.0",
"rehype": "^13.0.1",
"rehype-autolink-headings": "^7.1.0",
"sharp": "^0.33.3",
"typescript": "^5.4.5"
},
"devDependencies": {
"cspell": "^8.10.4",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1"
}
}