@vkuttyp/create-docus 5.4.4 → 5.4.6

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.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) NuxtLabs
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -145,13 +145,13 @@ To contribute to the CLI tool:
145
145
  git clone https://github.com/nuxt-content/docus
146
146
 
147
147
  # Install dependencies
148
- bun install
148
+ pnpm install
149
149
 
150
150
  # Build the CLI
151
- bun run build
151
+ pnpm run build
152
152
 
153
153
  # Run the dev server to run the docus docs
154
- bun run dev
154
+ pnpm run dev
155
155
  ```
156
156
 
157
157
  ## 📄 License
package/dist/main.mjs CHANGED
@@ -31,7 +31,7 @@ function createCLI(opts) {
31
31
  throw new Error("Invalid template");
32
32
  }
33
33
  const { runCommand } = await import("@nuxt/cli");
34
- await runCommand("init", [dir, "-t", `gh:nuxt-content/docus/.starters/${template}`]);
34
+ await runCommand("init", [dir, "-t", `gh:vkuttyp/docus/.starters/${template}`]);
35
35
  }
36
36
  });
37
37
  return {
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@vkuttyp/create-docus",
3
3
  "description": "CLI for creating Docus documentation projects",
4
- "version": "5.4.4",
4
+ "version": "5.4.6",
5
5
  "repository": {
6
6
  "type": "git",
7
- "url": "git+https://github.com/nuxt-content/docus.git"
7
+ "url": "git+https://github.com/vkuttyp/docus.git"
8
8
  },
9
9
  "private": false,
10
10
  "license": "MIT",
@@ -14,11 +14,6 @@
14
14
  "files": [
15
15
  "dist"
16
16
  ],
17
- "scripts": {
18
- "prepare": "bun run build",
19
- "build": "tsup-node ./main.ts --format esm",
20
- "dev": "tsx ./main.ts"
21
- },
22
17
  "dependencies": {
23
18
  "@nuxt/cli": "3.31.3",
24
19
  "@nuxt/kit": "^4.2.2",
@@ -34,5 +29,8 @@
34
29
  "tsup": "^8.5.1",
35
30
  "tsx": "^4.21.0"
36
31
  },
37
- "packageManager": "bun@1.3.5"
38
- }
32
+ "scripts": {
33
+ "build": "tsup-node ./main.ts --format esm",
34
+ "dev": "tsx ./main.ts"
35
+ }
36
+ }