-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.33 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 3.33 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "docs",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "node ./scripts/generate-nav-sprite.mjs && NODE_OPTIONS=--max-old-space-size=8192 astro build",
"build:fast": "node ./scripts/generate-nav-sprite.mjs && SKIP_OG=true NODE_OPTIONS=--max-old-space-size=8192 astro build",
"build:linkcheck": "node ./scripts/generate-nav-sprite.mjs && SKIP_OG=true SKIP_LLMS=true SKIP_IMG=true NODE_OPTIONS=--max-old-space-size=8192 astro build",
"preview": "astro preview",
"check": "astro check",
"format": "pnpm run format:code",
"format:ci": "pnpm run format:imports && pnpm run format:code",
"format:code": "prettier -w . --cache --plugin-search-dir=.",
"format:imports": "echo 'Skipped formatting imports'",
"lint:linkcheck": "pnpm run build:linkcheck && node --experimental-transform-types ./scripts/lint-linkcheck.ts",
"lint:linkcheck:nobuild": "node --experimental-transform-types ./scripts/lint-linkcheck.ts",
"lint:slugcheck": "node ./scripts/lint-slugcheck.mjs",
"lint:eslint": "eslint .",
"lint:steps": "node --experimental-transform-types ./scripts/lint-steps.ts",
"lint:redirects": "node --experimental-transform-types ./scripts/check-redirect-chains.ts",
"netlify:build": "pnpm ${NETLIFY_BUILD_SCRIPT:-build}",
"lunaria:build": "node --experimental-transform-types ./scripts/lunaria.mts",
"generate:redirects": "node --experimental-transform-types ./scripts/generate-redirects.ts",
"generate:nav-sprite": "node ./scripts/generate-nav-sprite.mjs"
},
"devDependencies": {
"@actions/core": "^1.11.1",
"@eslint/js": "^9.39.4",
"@iconify-json/simple-icons": "^1.2.80",
"@iconify-json/tabler": "^1.2.33",
"@resvg/resvg-js": "^2.6.2",
"@types/canvas-confetti": "^1.9.0",
"@types/hast": "^3.0.4",
"@types/node": "^24.12.2",
"@typescript-eslint/parser": "^8.59.1",
"astro": "^6.3.8",
"astro-eslint-parser": "^1.4.0",
"astro-icon": "^1.1.5",
"dedent-js": "^1.0.1",
"domhandler": "^5.0.3",
"embla-carousel": "^8.6.0",
"embla-carousel-autoplay": "^8.6.0",
"eslint": "^9.39.4",
"eslint-plugin-astro": "^1.7.0",
"fast-glob": "^3.3.3",
"github-slugger": "^2.0.0",
"globals": "^16.5.0",
"hastscript": "^9.0.1",
"htmlparser2": "^10.1.0",
"kleur": "^4.1.5",
"prettier": "^3.8.3",
"prettier-plugin-astro": "^0.14.1",
"sass": "^1.99.0",
"satori": "^0.26.0",
"typescript": "5.6.2",
"typescript-eslint": "^8.59.1",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0",
"vite-plugin-svgo": "^2.0.0"
},
"dependencies": {
"@astrojs/check": "^0.9.9",
"@astrojs/markdown-remark": "^7.1.2",
"@astrojs/rss": "4.0.18",
"@astrojs/sitemap": "^3.7.3",
"@astrojs/starlight": "^0.39.2",
"@expressive-code/plugin-collapsible-sections": "^0.41.7",
"@fontsource/material-icons": "^5.2.7",
"@lunariajs/core": "^0.1.1",
"canvas-confetti": "^1.9.4",
"photoswipe": "^5.4.4",
"rehype-slug": "^6.0.0",
"remark-smartypants": "^3.0.2",
"satori-html": "^0.3.2",
"sharp": "^0.34.5"
},
"packageManager": "pnpm@10.33.0",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@types/react",
"react",
"react-dom",
"vite"
]
}
}
}