@reliverse/config 1.5.10 → 1.5.12

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/README.md CHANGED
@@ -1,31 +1,67 @@
1
- # Reliverse CLI
1
+ # @reliverse/cli
2
2
 
3
- **✨ NPM**: [npmjs.com/@reliverse/cli](https://npmjs.com/@reliverse/cli)
4
- **💙 Discord**: [discord.gg/Pb8uKbwpsJ](https://discord.gg/Pb8uKbwpsJ)
5
- **⭐ GitHub**: [github.com/reliverse/cli](https://github.com/reliverse/cli)
6
- **📚 Docs**: [docs.reliverse.org](https://docs.reliverse.org/cli)
3
+ [📦 NPM](https://npmjs.com/@reliverse/cli) • [💬 Discord Community](https://discord.gg/Pb8uKbwpsJ) • [💖 Support on Patreon](https://patreon.com/blefnk) • [📚 Documentation](https://docs.reliverse.org/cli)
7
4
 
8
- @reliverse/cli is a powerful command-line interface tool that helps you effortlessly create new web projects, manage existing ones, and apply advanced, automated modifications to the codebase. Having Reliverse CLI is like having a superapp right in the terminal.
5
+ ## Quick Start
9
6
 
10
- ## Get Started
7
+ _Prerequisites: [Git](https://git-scm.com/downloads), [Node.js](https://nodejs.org), [Bun](https://bun.sh)_
11
8
 
12
- _Make sure you have [Node.js](https://nodejs.org), [Git](https://git-scm.com/downloads), and [Bun](https://bun.sh) installed. Then:_
9
+ 1️⃣ **Install**: `bun i -g @reliverse/cli` (or `reliverse update`) 2️⃣ **Use**: `reliverse cli`
13
10
 
14
- - Install: `bun i -g @reliverse/cli`
15
- - Use: `reliverse cli`
16
- - Update: `reliverse update`
11
+ ## Introduction
17
12
 
18
- ## Project Features
13
+ **Reliverse CLI** is your all-in-one command-line companion for _setting up_ and _enhancing_ web projects. Starting fresh or upgrading an existing app? This tool helps you:
19
14
 
20
- - Bootstrap new projects and manage existing ones
21
- - Push commits to GitHub, deploy to Vercel
22
- - Add integrations, apply different codemods
23
- - To learn more features, check out the [docs](https://docs.reliverse.org/cli)
15
+ - **Effortlessly create projects**: Spin up new web apps or import existing templates in a flash.
16
+ - **Apply powerful codemods**: Safely refactor code and integrate popular libraries.
17
+ - **Automate configuration**: Set up ESLint, Biome, env files, and more.
18
+ - **Support multiple frameworks**: Enjoy seamless compatibility with Next.js and beyond.
19
+ - **Customize with templates**: Clone pre-built templates and merge them conflict-free.
20
+ - **Automate GitHub & deployments**: Quickly create GitHub repositories, push commits, and deploy to Vercel.
21
+ - **Reliverse Addons**: `🔬 Open manual builder mode` to enable even more features and integrations.
24
22
 
25
- ## Contributing
23
+ ## Commands
26
24
 
27
- - [Learn how to contribute](https://docs.reliverse.org/intro/contributing/)
25
+ - `reliverse cli`
26
+ Start the interactive wizard to create or configure a project.
28
27
 
29
- ***
28
+ - `reliverse login` / `reliverse logout`
29
+ Log in or out of Reliverse services.
30
30
 
31
- Show your ❤️ and support for this project by ⭐ starring it and following its creator, [Nazar Kornienko](https://github.com/blefnk).
31
+ - `reliverse studio`
32
+ Launch the Reliverse Studio interface.
33
+
34
+ - `reliverse --help`
35
+ Display all available commands and usage info.
36
+
37
+ ## Configuration
38
+
39
+ When you run `reliverse cli`, a `reliverse.jsonc` or `reliverse.ts` file is created in your project root. You can edit it at any time to customize your CLI behavior. Simply restart the CLI to apply changes.
40
+
41
+ ## Installing Other Templates
42
+
43
+ Use `reliverse cli` to clone any public GitHub repository:
44
+
45
+ 1️⃣ Choose “Clone an existing repository” • 3️⃣ Provide the repository link • 4️⃣ Reliverse will clone and configure it automatically.
46
+
47
+ ## Collaborate & Contribute
48
+
49
+ We love community input! Check out our [Contributing Guide](https://docs.reliverse.org/intro/contributing/) for how to get involved or propose new features.
50
+
51
+ If you’re interested in deeper collaboration or partnership, [join our Discord community](https://discord.gg/Pb8uKbwpsJ) to chat with us directly.
52
+
53
+ ## Support
54
+
55
+ If Reliverse saves you time and effort, please consider supporting its development:
56
+
57
+ - [GitHub Sponsors](https://github.com/sponsors/blefnk)
58
+ - [Patreon](https://patreon.com/blefnk)
59
+ - [PayPal](https://paypal.me/blefony)
60
+
61
+ Even a simple ⭐ on [GitHub](https://github.com/reliverse/cli) shows your love!
62
+
63
+ Thanks! Happy Reliversing!
64
+
65
+ ## License
66
+
67
+ [MIT](LICENSE) © 2025 [blefnk Nazarii Korniienko](https://github.com/blefnk)
package/bin/main.d.ts CHANGED
@@ -15,7 +15,8 @@ export declare const reliverseConfigSchema: import("@sinclair/typebox").TObject<
15
15
  projectCategory: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"unknown">, import("@sinclair/typebox").TLiteral<"website">, import("@sinclair/typebox").TLiteral<"vscode">, import("@sinclair/typebox").TLiteral<"browser">, import("@sinclair/typebox").TLiteral<"cli">, import("@sinclair/typebox").TLiteral<"library">]>;
16
16
  projectSubcategory: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"unknown">, import("@sinclair/typebox").TLiteral<"e-commerce">, import("@sinclair/typebox").TLiteral<"tool">]>;
17
17
  projectFramework: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"unknown">, import("@sinclair/typebox").TLiteral<"nextjs">, import("@sinclair/typebox").TLiteral<"vite">, import("@sinclair/typebox").TLiteral<"svelte">, import("@sinclair/typebox").TLiteral<"vue">, import("@sinclair/typebox").TLiteral<"astro">, import("@sinclair/typebox").TLiteral<"npm-jsr">, import("@sinclair/typebox").TLiteral<"wxt">, import("@sinclair/typebox").TLiteral<"vscode">]>;
18
- projectTemplate: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"unknown">, import("@sinclair/typebox").TLiteral<"blefnk/relivator">, import("@sinclair/typebox").TLiteral<"blefnk/relivator-docker-template">, import("@sinclair/typebox").TLiteral<"blefnk/next-react-ts-src-minimal">, import("@sinclair/typebox").TLiteral<"blefnk/all-in-one-nextjs-template">, import("@sinclair/typebox").TLiteral<"blefnk/create-t3-app">, import("@sinclair/typebox").TLiteral<"blefnk/create-next-app">, import("@sinclair/typebox").TLiteral<"blefnk/astro-starlight-template">, import("@sinclair/typebox").TLiteral<"blefnk/versator">, import("@sinclair/typebox").TLiteral<"reliverse/template-browser-extension">, import("@sinclair/typebox").TLiteral<"microsoft/vscode-extension-samples">, import("@sinclair/typebox").TLiteral<"microsoft/vscode-extension-template">, import("@sinclair/typebox").TLiteral<"reliverse/cli-starter-template">, import("@sinclair/typebox").TLiteral<"blefnk/deno-cli-tutorial">]>;
18
+ projectTemplate: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"unknown">, import("@sinclair/typebox").TLiteral<"blefnk/relivator-nextjs-template">, import("@sinclair/typebox").TLiteral<"blefnk/relivator-docker-template">, import("@sinclair/typebox").TLiteral<"blefnk/next-react-ts-src-minimal">, import("@sinclair/typebox").TLiteral<"blefnk/all-in-one-nextjs-template">, import("@sinclair/typebox").TLiteral<"blefnk/create-t3-app">, import("@sinclair/typebox").TLiteral<"blefnk/create-next-app">, import("@sinclair/typebox").TLiteral<"blefnk/astro-starlight-template">, import("@sinclair/typebox").TLiteral<"blefnk/versator-nextjs-template">, import("@sinclair/typebox").TLiteral<"reliverse/template-browser-extension">, import("@sinclair/typebox").TLiteral<"microsoft/vscode-extension-samples">, import("@sinclair/typebox").TLiteral<"microsoft/vscode-extension-template">, import("@sinclair/typebox").TLiteral<"reliverse/cli-starter-template">, import("@sinclair/typebox").TLiteral<"blefnk/deno-cli-tutorial">]>;
19
+ projectTemplateDate: import("@sinclair/typebox").TString;
19
20
  features: import("@sinclair/typebox").TObject<{
20
21
  i18n: import("@sinclair/typebox").TBoolean;
21
22
  analytics: import("@sinclair/typebox").TBoolean;
package/bin/main.js CHANGED
@@ -249,21 +249,21 @@ export const reliverseConfigSchema = Type.Object({
249
249
  ]),
250
250
  projectTemplate: Type.Union([
251
251
  Type.Literal(UNKNOWN_VALUE),
252
- Type.Literal("blefnk/relivator"),
252
+ Type.Literal("blefnk/relivator-nextjs-template"),
253
253
  Type.Literal("blefnk/relivator-docker-template"),
254
254
  Type.Literal("blefnk/next-react-ts-src-minimal"),
255
255
  Type.Literal("blefnk/all-in-one-nextjs-template"),
256
256
  Type.Literal("blefnk/create-t3-app"),
257
257
  Type.Literal("blefnk/create-next-app"),
258
258
  Type.Literal("blefnk/astro-starlight-template"),
259
- Type.Literal("blefnk/versator"),
259
+ Type.Literal("blefnk/versator-nextjs-template"),
260
260
  Type.Literal("reliverse/template-browser-extension"),
261
261
  Type.Literal("microsoft/vscode-extension-samples"),
262
262
  Type.Literal("microsoft/vscode-extension-template"),
263
263
  Type.Literal("reliverse/cli-starter-template"),
264
264
  Type.Literal("blefnk/deno-cli-tutorial")
265
265
  ]),
266
- // projectTemplateDate: Type.String(),
266
+ projectTemplateDate: Type.String(),
267
267
  features: featuresSchema,
268
268
  preferredLibraries: preferredLibrariesSchema,
269
269
  codeStyle: codeStyleSchema,
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@reliverse/config",
3
- "version": "1.5.10",
3
+ "version": "1.5.12",
4
4
  "license": "MIT",
5
- "description": "This CLI tool can help you easily create new web projects, manage existing projects, and automatically make advanced codebase modifications, with more features coming soon.",
5
+ "description": "Configuration utilities for @reliverse/cli",
6
6
  "type": "module",
7
7
  "author": "reliverse",
8
8
  "repository": {
@@ -34,10 +34,6 @@
34
34
  "publishConfig": {
35
35
  "access": "public"
36
36
  },
37
- "dependencies": {
38
- "@sinclair/typebox": "^0.34.28",
39
- "fs-extra": "^11.3.0",
40
- "pathe": "^2.0.3"
41
- },
37
+ "dependencies": {},
42
38
  "devDependencies": {}
43
39
  }