-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 992 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 992 Bytes
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
{
"name": "@crossid/docusaurus-remote-content",
"version": "0.1.5",
"description": "A plugin for Docusaurus to fetch content from remote sources.",
"main": "lib/index.js",
"files": [
"lib"
],
"repository": "https://github.com/crossid/docusaurus-remote-content.git",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"release": "release-it --github.release --ci",
"prettier": "prettier --write **/*.{js,jsx,ts,tsx,md,yml,json}"
},
"keywords": [
"docusaurus",
"plugin",
"remote"
],
"author": "crossid.io",
"license": "MIT",
"prettier": {
"semi": true,
"trailingComma": "all",
"singleQuote": true,
"printWidth": 80,
"tabWidth": 2
},
"devDependencies": {
"@docusaurus/types": "^2.0.0-beta.6",
"@docusaurus/utils-validation": "^2.0.0-beta.6",
"release-it": "^14.11.5",
"typescript": "^4.4.2"
},
"dependencies": {
"axios": "^0.21.4",
"pretty-ms": "^7.0.1"
}
}