-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.45 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
{
"name": "vitepress-plugin-llms",
"version": "1.13.1",
"description": "📜 A VitePress plugin for generating LLM-friendly documentation",
"keywords": [
"ai",
"documentation",
"llms",
"plugin",
"vite-plugin",
"vitepress",
"vitepress-plugin"
],
"license": "MIT",
"author": "Okinea Dev <hi@okinea.dev> (https://github.com/okineadev)",
"repository": {
"type": "git",
"url": "git+https://github.com/okineadev/vitepress-plugin-llms.git"
},
"funding": "https://github.com/sponsors/okineadev",
"files": [
"dist/",
"patches/mdast-util-to-markdown@*.patch"
],
"type": "module",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./vitepress-components": {
"types": "./dist/vitepress-components/composables/copy-or-download-as-markdown-buttons.d.ts",
"import": "./dist/vitepress-components/composables/copy-or-download-as-markdown-buttons.js"
},
"./vitepress-components/*.vue": {
"import": "./dist/vitepress-components/*.vue"
}
},
"scripts": {
"lint:oxc": "oxlint",
"lint:spell": "cspell --gitignore .",
"lint": "bun run lint:oxc && bun run lint:spell",
"format": "oxfmt",
"format:check": "oxfmt --check",
"test": "bun test --concurrent",
"preversion": "bun run format && git add .",
"build": "bunup",
"dev": "bunup --watch",
"prepare": "husky"
},
"dependencies": {
"gray-matter": "^4.0.3",
"markdown-it": "^14.1.0",
"markdown-title": "^1.0.2",
"mdast-util-from-markdown": "^2.0.3",
"millify": "^6.1.0",
"minimatch": "^10.2.5",
"path-to-regexp": "^6.3.0",
"picocolors": "^1.1.1",
"pretty-bytes": "^7.1.0",
"remark": "^15.0.1",
"remark-frontmatter": "^5.0.0",
"tokenx": "^1.3.0",
"unist-util-remove": "^4.0.0",
"unist-util-visit": "^5.1.0"
},
"devDependencies": {
"@commitlint/types": "^20.5.0",
"@tsconfig/strictest": "^2.0.8",
"@types/node": "18.0.0",
"@typescript/native-preview": "beta",
"bun-types": "1.3.1",
"bunup": "0.16.31",
"console-fail-test": "^0.6.0",
"cspell": "^10.0.0",
"dedent": "^1.7.2",
"eslint-plugin-perfectionist": "^5.9.0",
"husky": "^9.1.7",
"nano-staged": "^1.0.2",
"oxfmt": "^0.46.0",
"oxlint": "1.61.0",
"oxlint-tsgolint": "^0.22.0",
"vitepress": "1.4.1"
},
"engines": {
"node": ">=18"
},
"patchedDependencies": {
"mdast-util-to-markdown@2.1.2": "patches/mdast-util-to-markdown@2.1.2.patch"
},
"trustedDependencies": [
"esbuild"
]
}