generated from rdilweb/template-docusaurus-plugin
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
61 lines (61 loc) · 1.59 KB
/
package.json
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
{
"name": "docusaurus-plugin-remote-content",
"version": "4.0.0",
"description": "A Docusaurus v2+ plugin that allows you to fetch content from remote sources!",
"main": "build/index.js",
"repository": "https://github.com/rdilweb/docusaurus-plugin-remote-content.git",
"author": "Reece Dunham <me@rdil.rocks>",
"license": "MIT",
"types": "build/index.d.ts",
"scripts": {
"build": "tsc && rimraf build/tsconfig.tsbuildinfo",
"prettier": "prettier --write \"**/*.{js,ts,md,json}\""
},
"prettier": {
"semi": false,
"tabWidth": 4
},
"devDependencies": {
"@docusaurus/types": "3.0.0",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"prettier": "^3.1.0",
"typescript": "^5.3.2"
},
"peerDependencies": {
"@docusaurus/core": "2.x || 3.x"
},
"bugs": {
"url": "https://github.com/rdilweb/docusaurus-plugin-remote-content/issues"
},
"dependencies": {
"axios": "^1.6.0",
"picocolors": "^1.0.0",
"pretty-ms": "^7.0.1",
"rimraf": "^5.0.5"
},
"files": [
"build/*",
"src",
"CHANGELOG.md"
],
"directories": {
"example": "testsite",
"lib": "src"
},
"homepage": "https://github.com/rdilweb/docusaurus-plugin-remote-content",
"keywords": [
"docusaurus",
"v2",
"plugin",
"remote",
"content"
],
"engines": {
"node": ">=18"
},
"workspaces": [
"testsite"
],
"packageManager": "yarn@4.0.2"
}