-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.54 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.54 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
39
40
41
42
43
44
45
46
{
"name": "moat-docs",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "bun x astro dev",
"build": "bun run check:assets && bun run fetch:docs && bun x astro build",
"preview": "bun x astro preview",
"astro": "bun x astro",
"fetch:docs": "bun scripts/fetch-docs.ts",
"fetch:moat": "bun scripts/fetch-docs.ts moat",
"fetch:keep": "bun scripts/fetch-docs.ts keep",
"fetch:gatekeeper": "bun scripts/fetch-docs.ts gatekeeper",
"check": "bun x astro check",
"check:assets": "bun scripts/check-assets.ts",
"lint": "bun x eslint . --ext .js,.ts,.astro",
"lint:fix": "bun x eslint . --ext .js,.ts,.astro --fix",
"test:lighthouse": "bun run build && bun x lhci autorun",
"validate": "bun run check && bun run lint && bun run build",
"validate:links": "bun scripts/validate-links.ts"
},
"dependencies": {
"@astrojs/mdx": "^4.1.0",
"@astrojs/sitemap": "^3.7.0",
"@astrojs/tailwind": "^5.1.4",
"@vercel/og": "^0.8.6",
"astro": "^5.16.15",
"astro-og-canvas": "^0.10.0",
"rehype-external-links": "^3.0.0",
"remark-github-blockquote-alert": "^2.0.1",
"satori": "^0.19.1",
"tailwindcss": "^3.4.18"
},
"devDependencies": {
"@astrojs/check": "^0.9.6",
"@lhci/cli": "^0.15.1",
"@tailwindcss/typography": "^0.5.19",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"eslint": "^9.39.2",
"eslint-plugin-astro": "^1.5.0",
"tsx": "^4.19.2",
"typescript": "^5.9.3"
}
}