forked from thoth-tech/documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 707 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 707 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
{
"name": "starlight-documentation-website",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --write \"**/*.md\"",
"format:check": "prettier --check \"**/*.md\"",
"prose:check": "vale --minAlertLevel error --output=docs/.vale/vale.tmpl docs",
"lint": "npm run format:check && npm run prose:check"
},
"dependencies": {
"@astrojs/netlify": "^3.0.0",
"@astrojs/starlight": "^0.9.0",
"astro": "^3.0.7",
"prettier": "^3.0.3",
"sharp": "^0.32.3"
},
"devDependencies": {
"markdownlint": "^0.31.0"
}
}