-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.47 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
{
"name": "@hugomrdias/docs",
"type": "module",
"version": "0.2.0",
"description": "Starlight plugins for TypeScript documentation and AI chat integration",
"author": "Hugo Dias <hugomrdias@gmail.com> (hugodias.me)",
"license": "MIT",
"repository": {
"url": "hugomrdias/iso-repo",
"directory": "packages/docs"
},
"keywords": [
"docs",
"typescript",
"starlight",
"ai",
"chat",
"llms",
"typedoc",
"documentation",
"astro"
],
"exports": {
"./starlight-typedoc": "./docs-plugin.ts",
"./PageTitle": "./llms-plugin/PageTitle.astro",
"./starlight-llms": "./llms-plugin/index.ts",
"./markdown": "./llms-plugin/markdown.ts",
"./llms.txt": "./llms-plugin/llms.txt.ts",
"./llms-full.txt": "./llms-plugin/llms-full.txt.ts"
},
"files": [
"docs-plugin.ts",
"llms-plugin"
],
"scripts": {
"lint": "biome check --no-errors-on-unmatched --files-ignore-unknown=true",
"test": "pnpm run lint"
},
"devDependencies": {
"@astrojs/starlight": "~0.38.3",
"@biomejs/biome": "^2.4.12",
"@types/node": "^25.6.0",
"astro": "^6.1.9",
"typescript": "5.9.3"
},
"publishConfig": {
"provenance": false
},
"depcheck": {
"specials": [
"bin"
],
"ignores": [
"@types/*"
]
},
"dependencies": {
"github-slugger": "^2.0.0",
"typedoc-plugin-markdown": "^4.11.0",
"yaml": "^2.8.3"
},
"peerDependencies": {
"@astrojs/starlight": ">=0.37.1"
}
}