-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.85 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.85 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
{
"name": "docs",
"description": "The official SDK documentation site for TitaniumNetwork.",
"homepage": "https://docs.titaniumnetwork.org/",
"license": "AGPLv3",
"repository": "https://github.com/titaniumnetwork-dev/Oxide-Docs",
"type": "module",
"version": "3.0.0",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"typecheck": "astro check",
"typecheck-full": "astro check && tsc --noEmit --skipLibCheck",
"fmt": "remark \"src/content/docs/**/*.{md,mdx}\" --output && biome format --write .",
"fmt-check": "remark \"src/content/docs/**/*.{md,mdx}\" && biome format .",
"lint": "remark \"src/content/docs/**/*.{md,mdx}\" --output && biome lint --write .",
"lint-check": "remark \"src/content/docs/**/*.{md,mdx}\" && biome lint .",
"check": "remark \"src/content/docs/**/*.{md,mdx}\" --output && biome check --write .",
"check-ci": "remark \"src/content/docs/**/*.{md,mdx}\" && biome check ."
},
"dependencies": {
"@astrojs/check": "^0.9.6",
"@astrojs/starlight": "^0.37.6",
"@fontsource/raleway": "^5.2.8",
"@shikijs/rehype": "^3.13.0",
"@shikijs/themes": "^3.13.0",
"astro": "^5.17.3",
"astro-rehype-relative-markdown-links": "^0.18.1",
"gray-matter": "^4.0.3",
"sharp": "^0.34.4",
"starlight-auto-sidebar": "^0.1.2",
"starlight-typedoc": "^0.21.3",
"typedoc": "^0.28.13",
"typescript": "^5.9.2"
},
"devDependencies": {
"@biomejs/biome": "^2.2.4",
"@mdx-js/mdx": "^3.1.1",
"remark": "^15.0.1",
"remark-cli": "^12.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-mdx": "^3.1.1",
"remark-stringify": "^11.0.0",
"remark-yaml-config": "^7.0.0",
"unified": "^11.0.5"
}
}