-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.92 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
{
"name": "vitepress-plugin-external-markdown",
"version": "0.3.1",
"description": "Materialize Markdown files outside a VitePress srcDir as generated VitePress pages.",
"homepage": "https://github.com/Jabelic-Works/vitepress-plugin-external-markdown#readme",
"bugs": {
"url": "https://github.com/Jabelic-Works/vitepress-plugin-external-markdown/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Jabelic-Works/vitepress-plugin-external-markdown.git"
},
"files": [
"dist/**/*.d.ts",
"dist/**/*.js",
"docs/.vitepress/**/*.ts",
"docs/src/index.md",
"docs-content/**/assets/**/*",
"docs-content/**/*.md",
"README.md",
"LICENSE"
],
"type": "module",
"sideEffects": false,
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"clean": "rm -rf dist coverage",
"docs:build": "vitepress build docs",
"docs:dev": "vitepress dev docs",
"docs:preview": "vitepress preview docs",
"format": "oxfmt . --write",
"format:check": "oxfmt . --check",
"lint": "oxlint . && node scripts/check-no-let.mjs",
"lint:strict": "oxlint . --deny-warnings && node scripts/check-no-let.mjs",
"release:check": "node scripts/check-release-version.mjs && node scripts/check-npm-version-unpublished.mjs",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"fast-glob": "^3.3.3",
"gray-matter": "^4.0.3"
},
"devDependencies": {
"@types/node": "^24.0.0",
"oxfmt": "^0.54.0",
"oxlint": "^1.69.0",
"typescript": "^5.9.0",
"vite": "^7.0.0",
"vitepress": "^1.6.0",
"vitest": "^4.0.0"
},
"peerDependencies": {
"vite": ">=5.0.0",
"vitepress": ">=1.0.0"
},
"engines": {
"node": ">=18.18.0"
},
"packageManager": "pnpm@11.6.0"
}