-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.79 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.79 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
{
"name": "frcsoftware-starlight",
"type": "module",
"version": "0.0.1",
"engines": {
"node": ">=24.0.0"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "^24.0.0",
"onFail": "warn"
},
"packageManager": {
"name": "pnpm",
"version": "~12.3.0",
"onFail": "download"
}
},
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "pnpm lint:eslint && pnpm lint:md && pnpm lint:regions && pnpm typecheck && pnpm vale",
"lint:eslint": "eslint \"src/**/*.{ts,astro,js,mjs}\" \"*.mjs\" \"scripts/*.{ts,mjs,js}\" --cache",
"lint:md": "remark src/content/docs --ext mdx --frail",
"lint:regions": "tsx scripts/validate-regions.ts",
"lint:images": "node scripts/images.lint.js",
"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 --minimumFailingSeverity warning",
"prepare": "husky"
},
"dependencies": {
"@astrojs/markdown-remark": "^7.3.0",
"@astrojs/starlight": "^0.42.0",
"@mdi/js": "^7.4.47",
"astro": "^7.3.1",
"sharp": "^0.35.4",
"starlight-sidebar-topics": "^0.9.0",
"starlight-sidebar-topics-dropdown": "^0.6.0",
"unist-util-visit": "^5.1.0",
"yaml": "^2.9.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.10",
"@eslint/js": "^10.0.1",
"@frcsoftware/vale": "3.19.0",
"@types/estree": "^1.0.9",
"@types/hast": "^3.0.5",
"@types/mdast": "^4.0.4",
"@types/node": "^26.5.0",
"astro-eslint-parser": "^3.1.0",
"eslint": "^10.10.0",
"eslint-plugin-astro": "^3.1.0",
"fast-glob": "^3.3.3",
"globals": "^17.12.0",
"husky": "^9.1.7",
"lint-staged": "^17.5.0",
"mdast-util-mdx": "^3.0.0",
"mdast-util-mdx-jsx": "^3.2.0",
"mdx2vast": "^0.5.0",
"prettier": "^3.9.6",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-sentences-per-line": "^0.2.4",
"remark-cli": "^12.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-lint-no-dead-urls": "^2.0.1",
"remark-lint-no-literal-urls": "^4.0.1",
"remark-mdx": "^3.1.1",
"remark-preset-lint-recommended": "^7.0.1",
"starlight-links-validator": "^0.25.3",
"tsx": "^4.23.13",
"typescript": "^6.0.3",
"typescript-eslint": "^8.70.0",
"vfile": "^6.0.3"
}
}