@reliverse/config 1.5.0
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 +21 -0
- package/README.md +31 -0
- package/package.json +37 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 Nazarii Korniienko
|
|
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
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Reliverse CLI
|
|
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)
|
|
7
|
+
|
|
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.
|
|
9
|
+
|
|
10
|
+
## Get Started
|
|
11
|
+
|
|
12
|
+
_Make sure you have [Node.js](https://nodejs.org), [Git](https://git-scm.com/downloads), and [Bun](https://bun.sh) installed. Then:_
|
|
13
|
+
|
|
14
|
+
- Install: `bun i -g @reliverse/cli`
|
|
15
|
+
- Use: `reliverse cli`
|
|
16
|
+
- Update: `bun -g update --latest`
|
|
17
|
+
|
|
18
|
+
## Project Features
|
|
19
|
+
|
|
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)
|
|
24
|
+
|
|
25
|
+
## Contributing
|
|
26
|
+
|
|
27
|
+
- [Learn how to contribute](https://docs.reliverse.org/intro/contributing/)
|
|
28
|
+
|
|
29
|
+
***
|
|
30
|
+
|
|
31
|
+
Show your ❤️ and support for this project by ⭐ starring it and following its creator, [Nazar Kornienko](https://github.com/blefnk).
|
package/package.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@reliverse/config",
|
|
3
|
+
"version": "1.5.0",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"description": "This superapp 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
|
+
"type": "module",
|
|
7
|
+
"author": "reliverse",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/reliverse/@reliverse/cli.git"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/reliverse/@reliverse/cli/issues",
|
|
14
|
+
"email": "blefnk@gmail.com"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"cli",
|
|
18
|
+
"reliverse"
|
|
19
|
+
],
|
|
20
|
+
"main": "./bin/main.js",
|
|
21
|
+
"module": "./bin/main.js",
|
|
22
|
+
"exports": {
|
|
23
|
+
".": "./bin/main.js"
|
|
24
|
+
},
|
|
25
|
+
"bin": {
|
|
26
|
+
"config": "bin/main.js"
|
|
27
|
+
},
|
|
28
|
+
"files": [
|
|
29
|
+
"bin",
|
|
30
|
+
"package.json",
|
|
31
|
+
"README.md",
|
|
32
|
+
"LICENSE"
|
|
33
|
+
],
|
|
34
|
+
"publishConfig": {
|
|
35
|
+
"access": "public"
|
|
36
|
+
}
|
|
37
|
+
}
|