-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.84 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": "docusaurus-plugin-dhub",
"version": "0.1.1",
"description": "Docusaurus plugin for Dhub (dhub.dev): adds \"Edit in Dhub\" links to docs and blog pages and emits a dhub.json route-to-source manifest.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dhub-dev/docusaurus-plugin-dhub.git"
},
"homepage": "https://dhub.dev/docusaurus",
"bugs": {
"url": "https://github.com/dhub-dev/docusaurus-plugin-dhub/issues"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"src",
"!src/__tests__",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rm -rf lib && tsc -p tsconfig.client.json && tsc -p tsconfig.json && node scripts/copy-assets.mjs",
"test": "vitest run --project unit",
"test:integration": "vitest run --project integration",
"typecheck": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.client.json --noEmit",
"prepublishOnly": "npm run build && npm run test"
},
"workspaces": [
"fixture"
],
"keywords": [
"docusaurus",
"docusaurus-plugin",
"dhub",
"cms",
"visual-editor",
"mdx"
],
"dependencies": {
"@docusaurus/utils-validation": "^3.5.0"
},
"peerDependencies": {
"@docusaurus/core": ">=3.5.0 <4",
"@docusaurus/plugin-content-blog": ">=3.5.0 <4",
"@docusaurus/plugin-content-docs": ">=3.5.0 <4",
"@docusaurus/theme-classic": ">=3.5.0 <4",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@docusaurus/plugin-content-blog": "3.10.2",
"@docusaurus/plugin-content-docs": "3.10.2",
"@docusaurus/theme-classic": "3.10.2",
"@docusaurus/types": "3.10.2",
"@types/node": "^22.10.0",
"@types/react": "^19.0.0",
"typescript": "^5.6.0",
"vitest": "^4.1.0"
},
"engines": {
"node": ">=18.0"
}
}