-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.44 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
{
"name": "frcsoftware-starlight",
"type": "module",
"version": "0.0.1",
"packageManager": "pnpm@10.16.0",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"generate:glossary": "tsx scripts/generate-glossary.ts",
"lint:glossary": "tsx scripts/generate-glossary.ts --check",
"prebuild": "tsx scripts/generate-glossary.ts",
"predev": "tsx scripts/generate-glossary.ts",
"lint": "pnpm lint:eslint && pnpm lint:md && pnpm lint:regions && pnpm lint:glossary && pnpm typecheck && pnpm vale",
"lint:eslint": "eslint .",
"lint:md": "remark src/content/docs --ext mdx --frail",
"lint:regions": "tsx scripts/validate-regions.ts",
"vale": "pnpm vale:setup && vale sync && vale src/content",
"vale:setup": "tsx scripts/setup-vale.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "astro check",
"prepare": "husky"
},
"dependencies": {
"@astrojs/markdown-remark": "^7.2.1",
"@astrojs/starlight": "^0.41.4",
"@mdi/js": "^7.4.47",
"astro": "^7.1.3",
"sharp": "^0.34.5",
"starlight-sidebar-topics": "^0.8.0",
"starlight-sidebar-topics-dropdown": "^0.6.0",
"unist-util-visit": "^5.1.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"@eslint/js": "^10.0.1",
"@types/estree": "^1.0.9",
"@types/mdast": "^4.0.4",
"@vvago/vale": "^3.16.0",
"astro-eslint-parser": "^1.4.0",
"eslint": "^10.5.0",
"eslint-plugin-astro": "^1.7.0",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"mdast-util-mdx": "^3.0.0",
"mdast-util-mdx-jsx": "^3.2.0",
"mdx2vast": "^0.3.1",
"prettier": "^3.8.4",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-sentences-per-line": "^0.2.3",
"remark-cli": "^12.0.1",
"remark-frontmatter": "^5.0.0",
"remark-lint-no-dead-urls": "^2.0.1",
"remark-mdx": "^3.1.1",
"remark-preset-lint-recommended": "^7.0.1",
"starlight-links-validator": "^0.20.0",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.1",
"vfile": "^6.0.3"
}
}