@reliverse/config 1.5.10 → 1.5.11
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 +58 -20
- package/bin/main.d.ts +2 -1
- package/bin/main.js +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,31 +1,69 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @reliverse/cli
|
|
2
2
|
|
|
3
|
-
|
|
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
|
-
|
|
5
|
+
## Quick Start
|
|
9
6
|
|
|
10
|
-
|
|
7
|
+
_Prerequisites: [Git](https://git-scm.com/downloads), [Node.js](https://nodejs.org), [Bun](https://bun.sh)_
|
|
11
8
|
|
|
12
|
-
|
|
9
|
+
1️⃣ **Install**: `bun i -g @reliverse/cli` • 2️⃣ **Use**: `reliverse cli` • 3️⃣ **Update (if needed)**: `reliverse update`
|
|
13
10
|
|
|
14
|
-
|
|
15
|
-
- Use: `reliverse cli`
|
|
16
|
-
- Update: `reliverse update`
|
|
11
|
+
## Introduction
|
|
17
12
|
|
|
18
|
-
|
|
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
|
-
-
|
|
21
|
-
-
|
|
22
|
-
-
|
|
23
|
-
-
|
|
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, Prettier, Biome, `.env` files, Git hooks, and more.
|
|
18
|
+
- **Support multiple frameworks**: Enjoy seamless compatibility with Next.js, React, Vue, Svelte, Astro, and beyond.
|
|
19
|
+
- **Customize with templates**: Clone pre-built templates and merge them conflict-free.
|
|
20
|
+
- **Automate GitHub & deployments**: Quickly create repositories, push commits, and deploy to Vercel.
|
|
21
|
+
- **Extend functionality**: Upcoming Reliverse Addons enable even more features and integrations.
|
|
24
22
|
|
|
25
|
-
|
|
23
|
+
Although it’s built primarily for JavaScript/TypeScript (especially React and Next.js), @reliverse/cli is flexible enough to grow beyond web development, streamlining workflows with a single, powerful CLI.
|
|
26
24
|
|
|
27
|
-
|
|
25
|
+
## Commands
|
|
28
26
|
|
|
29
|
-
|
|
27
|
+
- `reliverse cli`
|
|
28
|
+
Start the interactive wizard to create or configure a project.
|
|
30
29
|
|
|
31
|
-
|
|
30
|
+
- `reliverse login` / `reliverse logout`
|
|
31
|
+
Log in or out of Reliverse services.
|
|
32
|
+
|
|
33
|
+
- `reliverse studio`
|
|
34
|
+
Launch the Reliverse Studio interface.
|
|
35
|
+
|
|
36
|
+
- `reliverse --help`
|
|
37
|
+
Display all available commands and usage info.
|
|
38
|
+
|
|
39
|
+
## Configuration
|
|
40
|
+
|
|
41
|
+
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.
|
|
42
|
+
|
|
43
|
+
## Installing Other Templates
|
|
44
|
+
|
|
45
|
+
Use `reliverse cli` to clone any public GitHub repository:
|
|
46
|
+
|
|
47
|
+
1️⃣ Choose “Clone an existing repository” • 3️⃣ Provide the repository link • 4️⃣ Reliverse will clone and configure it automatically.
|
|
48
|
+
|
|
49
|
+
## Collaborate & Contribute
|
|
50
|
+
|
|
51
|
+
We love community input! Check out our [Contributing Guide](https://docs.reliverse.org/intro/contributing/) for how to get involved or propose new features.
|
|
52
|
+
|
|
53
|
+
If you’re interested in deeper collaboration or partnership, [join our Discord community](https://discord.gg/Pb8uKbwpsJ) to chat with us directly.
|
|
54
|
+
|
|
55
|
+
## Support
|
|
56
|
+
|
|
57
|
+
If Reliverse saves you time and effort, please consider supporting its development:
|
|
58
|
+
|
|
59
|
+
- [GitHub Sponsors](https://github.com/sponsors/blefnk)
|
|
60
|
+
- [Patreon](https://patreon.com/blefnk)
|
|
61
|
+
- [PayPal](https://paypal.me/blefony)
|
|
62
|
+
|
|
63
|
+
Even a simple ⭐ on [GitHub](https://github.com/reliverse/cli) shows your love!
|
|
64
|
+
|
|
65
|
+
Thanks! Happy Reliversing!
|
|
66
|
+
|
|
67
|
+
## License
|
|
68
|
+
|
|
69
|
+
[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
|
-
|
|
266
|
+
projectTemplateDate: Type.String(),
|
|
267
267
|
features: featuresSchema,
|
|
268
268
|
preferredLibraries: preferredLibrariesSchema,
|
|
269
269
|
codeStyle: codeStyleSchema,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reliverse/config",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.11",
|
|
4
4
|
"license": "MIT",
|
|
5
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.",
|
|
6
6
|
"type": "module",
|