forked from withastro/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.73 KB
/
package.json
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "docs",
"version": "0.0.7",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "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": "organize-imports-cli ./tsconfig.json",
"add-language": "node ./scripts/add-language.mjs",
"docgen": "node ./scripts/docgen.mjs",
"docgen:errors": "node ./scripts/error-docgen.mjs",
"lint:a11y": "start-test 'yarn build && yarn preview' 3000 'yarn lint:a11y:local'",
"lint:a11y:local": "pa11y-ci --sitemap 'http://localhost:3000/sitemap.xml' --sitemap-find 'https://docs.astro.build' --sitemap-replace 'http://localhost:3000'",
"lint:a11y:remote": "pa11y-ci --sitemap 'https://docs.astro.build/sitemap.xml'",
"lint:linkcheck": "SKIP_OG=true pnpm build && tsm --require=./scripts/lib/filter-warnings.cjs ./scripts/lint-linkcheck.ts",
"lint:linkcheck:nobuild": "tsm --require=./scripts/lib/filter-warnings.cjs ./scripts/lint-linkcheck.ts",
"lint:slugcheck": "node ./scripts/lint-slugcheck.mjs",
"lint:eslint": "eslint .",
"netlify:build": "pnpm ${NETLIFY_BUILD_SCRIPT:-build}",
"lunaria:build": "lunaria build",
"lunaria:preview": "lunaria preview"
},
"devDependencies": {
"@11ty/eleventy-fetch": "^3.0.0",
"@actions/core": "^1.9.0",
"@babel/core": "^7.18.10",
"@docsearch/css": "^3.5.1",
"@types/canvas-confetti": "^1.6.0",
"@types/hast": "^3.0.3",
"@types/html-escaper": "^3.0.0",
"@types/mdast": "^4.0.3",
"@types/node": "^18.6.4",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"astro": "4.11.0",
"astro-auto-import": "^0.4.2",
"astro-eslint-parser": "^0.16.0",
"astro-og-canvas": "^0.5.0",
"bcp-47-normalize": "^2.1.0",
"canvaskit-wasm": "^0.39.1",
"dedent-js": "^1.0.1",
"domhandler": "^4.3.1",
"eslint": "^8.29.0",
"eslint-plugin-astro": "^0.21.0",
"eslint-plugin-react": "^7.32.1",
"fast-glob": "^3.2.11",
"hast-util-from-html": "^2.0.1",
"hast-util-select": "^6.0.2",
"hast-util-to-html": "^9.0.1",
"hast-util-to-string": "^3.0.0",
"hastscript": "^8.0.0",
"html-escaper": "^3.0.3",
"htmlparser2": "^7.2.0",
"kleur": "^4.1.5",
"mdast-util-from-markdown": "^2.0.0",
"mdast-util-to-hast": "^13.0.0",
"mdast-util-to-string": "^4.0.0",
"micromark-util-character": "^2.0.1",
"micromark-util-symbol": "^2.0.0",
"node-fetch": "^3.2.10",
"organize-imports-cli": "^0.10.0",
"p-retry": "^5.1.1",
"parse-numeric-range": "^1.3.0",
"prettier": "^3.1.0",
"prettier-plugin-astro": "^0.12.2",
"prompts": "^2.4.2",
"rehype": "^13.0.1",
"remark": "^15.0.1",
"remark-directive": "^3.0.0",
"tsm": "^2.3.0",
"typescript": "^5.0.2",
"unified": "^11.0.4",
"unist-util-remove": "^4.0.0",
"unist-util-visit": "^5.0.0",
"unist-util-walker": "^1.0.0"
},
"dependencies": {
"@astrojs/check": "^0.7.0",
"@astrojs/sitemap": "^3.1.5",
"@astrojs/starlight": "^0.24.4",
"@docsearch/js": "^3.5.2",
"@fontsource/ibm-plex-mono": "^4.5.10",
"@lunariajs/core": "^0.1.1",
"canvas-confetti": "^1.6.0",
"jsdoc-api": "^7.1.1",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.0",
"remark-smartypants": "^2.0.0",
"sass": "^1.54.3",
"sharp": "^0.32.6"
},
"packageManager": "[email protected]",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@types/react",
"react",
"react-dom",
"vite"
]
}
}
}