forked from thoth-tech/ThothTech-Documentation-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 973 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 973 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
30
31
{
"name": "starlight-documentation-website",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev --port 4321",
"start": "astro dev --port 4321",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --write \"**/*.md\" && prettier --write \"**/*.mdx\"",
"format:check": "prettier --check \"**/*.md\" && prettier --check \"**/*.mdx\"",
"prose:check": "vale --minAlertLevel error --output=.vale/vale.tmpl docs",
"lint": "npm run format:check && npm run prose:check"
},
"dependencies": {
"@astrojs/netlify": "^3.0.0",
"@astrojs/partytown": "^2.1.2",
"@astrojs/starlight": "^0.28.6",
"astro": "^4.16.18",
"sharp": "^0.32.3",
"starlight": "^0.3.9",
"starlight-blog": "^0.4.0",
"starlight-links-validator": "^0.12.3",
"vanilla-cookieconsent": "^3.0.1"
},
"devDependencies": {
"markdownlint": "^0.31.1",
"prettier": "^3.2.5"
}
}