create-docusaurus 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +15 -0
  2. package/bin/index.js +9 -0
  3. package/package.json +26 -0
package/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # `create-docusaurus`
2
+
3
+ A support package that allows to use:
4
+
5
+ ```bash
6
+ npx init docusaurus
7
+ ```
8
+
9
+ Or
10
+
11
+ ```bash
12
+ yarn create docusaurus
13
+ ```
14
+
15
+ ---
package/bin/index.js ADDED
@@ -0,0 +1,9 @@
1
+ #!/usr/bin/env node
2
+ /**
3
+ * Copyright (c) Facebook, Inc. and its affiliates.
4
+ *
5
+ * This source code is licensed under the MIT license found in the
6
+ * LICENSE file in the root directory of this source tree.
7
+ */
8
+
9
+ require('@docusaurus/init/bin/index');
package/package.json ADDED
@@ -0,0 +1,26 @@
1
+ {
2
+ "name": "create-docusaurus",
3
+ "version": "0.0.1",
4
+ "description": "Create Docusaurus apps easily.",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/facebook/docusaurus.git",
8
+ "directory": "packages/create-docusaurus"
9
+ },
10
+ "bugs": {
11
+ "url": "https://github.com/facebook/docusaurus/issues"
12
+ },
13
+ "bin": {
14
+ "create-docusaurus": "bin/index.js"
15
+ },
16
+ "publishConfig": {
17
+ "access": "public"
18
+ },
19
+ "license": "MIT",
20
+ "engines": {
21
+ "node": ">=12.13.0"
22
+ },
23
+ "dependencies": {
24
+ "@docusaurus/init": "latest"
25
+ }
26
+ }