-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·38 lines (38 loc) · 1.14 KB
/
package.json
File metadata and controls
executable file
·38 lines (38 loc) · 1.14 KB
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
{
"name": "valkey-glide-docs",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"badge": "sh ./add-draft-badges.sh && sh ./add-wip-aside.sh",
"build": "astro build",
"check-links": "lychee \"$PWD/dist\" --root-dir \"$PWD/dist\"",
"build:check-links": "pnpm build && pnpm run check-links",
"preview": "astro preview",
"astro": "astro",
"format:non-mdx": "prettier --write .",
"format:mdx": "remark --output --quiet \"src/content/docs/**/*.{md,mdx}\"",
"format": "pnpm run format:non-mdx && pnpm run format:mdx",
"test-deploy": "pnpm build && ./test-deploy.sh"
},
"dependencies": {
"@astrojs/mdx": "^4.3.4",
"@astrojs/starlight": "^0.35.2",
"astro": "^5.6.1",
"astro-mermaid": "^1.0.4",
"isomorphic-dompurify": "^2.35.0",
"marked": "^17.0.1",
"mermaid": "^11.10.1",
"sharp": "^0.34.2"
},
"devDependencies": {
"prettier": "3.6.2",
"prettier-plugin-astro": "0.14.1",
"remark-cli": "12.0.1",
"remark-frontmatter": "5.0.0",
"remark-mdx": "3.1.0",
"remark-preset-lint-recommended": "7.0.1"
}
}