-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 941 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 941 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
32
33
34
{
"name": "websocket-org",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "markdownlint 'src/**/*.md' 'src/**/*.mdx'",
"lint:fix": "markdownlint --fix 'src/**/*.md' 'src/**/*.mdx'",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,astro,css,md,mdx}'",
"format:check": "prettier --check 'src/**/*.{js,jsx,ts,tsx,astro,css,md,mdx}'",
"prepare": "husky"
},
"dependencies": {
"@astrojs/check": "^0.3.1",
"@astrojs/starlight": "^0.36.0",
"astro": "^5.14.4",
"gray-matter": "^4.0.3",
"sharp": "^0.32.5",
"typescript": "^5.3.2"
},
"devDependencies": {
"husky": "^9.0.11",
"markdownlint-cli": "^0.39.0",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0"
},
"engines": {
"node": ">=22.0.0"
}
}