selfhost 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 (2) hide show
  1. package/README.md +3 -0
  2. package/package.json +21 -0
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ ![Under Development](https://img.shields.io/badge/status-under%20development-yellow)
2
+
3
+ This package is currently under development and aims to provide a simple way to spin up and configure popular open-source projects. Our goal is to create a comprehensive toolkit that streamlines the setup and management of these services.
package/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "selfhost",
3
+ "version": "0.0.1",
4
+ "description": "A collection of community-maintained scripts for easily self-hosting open-source services.",
5
+ "keywords": [
6
+ "self-hosting",
7
+ "open-source",
8
+ "docker"
9
+ ],
10
+ "author": "veryCrunchy <me@verycrunchy.dev>",
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://github.com/veryCrunchy/selfhost.git"
14
+ },
15
+ "license": "MIT",
16
+ "dependencies": {},
17
+ "devDependencies": {},
18
+ "scripts": {
19
+ "test": "echo \"No tests specified\" && exit 0"
20
+ }
21
+ }