-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·126 lines (126 loc) · 3.83 KB
/
package.json
File metadata and controls
executable file
·126 lines (126 loc) · 3.83 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "starlight-cannoli-plugins",
"type": "module",
"version": "2.3.3",
"description": "Starlight plugins for automatic sidebar generation and link validation",
"license": "ISC",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"cannoli-latex-cleanup": "./dist/cli/cannoli-latex-cleanup.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./starlight-index-only-sidebar": {
"import": "./dist/plugins/starlight-index-only-sidebar.js",
"types": "./dist/plugins/starlight-index-only-sidebar.d.ts"
},
"./rehype-validate-links": {
"import": "./dist/plugins/rehype-validate-links.js",
"types": "./dist/plugins/rehype-validate-links.d.ts"
},
"./astro-normalize-paths": {
"import": "./dist/plugins/astro-normalize-paths.js",
"types": "./dist/plugins/astro-normalize-paths.d.ts"
},
"./astro-latex-compile": {
"import": "./dist/plugins/astro-latex-compile.js",
"types": "./dist/plugins/astro-latex-compile.d.ts"
},
"./astro-sync-docs-to-public": {
"import": "./dist/plugins/astro-sync-docs-to-public.js",
"types": "./dist/plugins/astro-sync-docs-to-public.d.ts"
},
"./starlight-dom-patches": {
"import": "./dist/plugins/starlight-dom-patches.js",
"types": "./dist/plugins/starlight-dom-patches.d.ts"
},
"./styles": "./dist/styles/",
"./styles/*": "./dist/styles/*"
},
"files": [
"dist"
],
"keywords": [
"astro",
"starlight",
"plugin",
"sidebar",
"rehype",
"link-validation"
],
"repository": {
"type": "git",
"url": "https://github.com/OccasionalCoderByTrade/astro-starlight-plugins"
},
"scripts": {
"app:dev": "npm run app:preprocess && rm -rf .astro/ && astro dev --port 5600",
"app:build": "npm run app:preprocess && rm -rf .astro/ && astro build",
"app:preview": "astro build && astro preview --port 5600",
"app:preprocess": "npx sass --quiet --no-source-map src/styles/_bootstrap-utilities-builder.scss src/styles/_bootstrap-utilities.scss",
"app:help": "astro --help",
"app:check": "astro check",
"lib:build": "npm run app:preprocess && tsup && cp -r src/styles dist/",
"prepublishOnly": "npm run lib:build",
"tree:index": "tree -P index.md src/content/docs",
"tree:depth": "bash scripts/tree-depth.sh",
"clean:empty-dirs": "find src/content/docs -type d -empty -delete"
},
"dependencies": {
"eslint-cannoli-plugins": "^1.0.13",
"glob": "^11.0.0",
"minimatch": "^9.0.0",
"unist-util-visit": "^5.0.0",
"yaml": "^2.4.0"
},
"peerDependencies": {
"@astrojs/starlight": ">=0.30.0",
"astro": ">=5.0.0"
},
"peerDependenciesMeta": {
"astro": {
"optional": false
},
"@astrojs/starlight": {
"optional": true
}
},
"overrides": {
"@types/hast": "^3.0.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.6",
"@astrojs/starlight": "^0.37.6",
"@eslint/js": "^10.0.1",
"@eslint/markdown": "^7.5.1",
"@expressive-code/plugin-line-numbers": "^0.41.7",
"@hpcc-js/wasm": "^2.33.1",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/hast": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"astro": "^5.6.1",
"bootstrap": "^5.3.8",
"eslint": "^10.0.2",
"globals": "^17.4.0",
"hast": "^1.0.0",
"jiti": "^2.6.1",
"lodash": "^4.17.23",
"rehype-class-names": "^2.0.0",
"rehype-graphviz": "^0.3.0",
"rehype-katex": "^7.0.1",
"rehype-mathjax": "^7.1.0",
"rehype-raw": "^7.0.0",
"remark-math": "^6.0.0",
"sass-embedded": "^1.97.3",
"sharp": "^0.34.2",
"tsup": "^8.3.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vfile": "^6.0.0"
}
}