@coffer-org/meta 1.1.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.
Files changed (2) hide show
  1. package/README.md +13 -0
  2. package/package.json +14 -0
package/README.md ADDED
@@ -0,0 +1,13 @@
1
+ # @coffer-org/meta
2
+
3
+ Portable Coffer distribution.
4
+
5
+ ```bash
6
+ mkdir my-coffer && cd my-coffer
7
+ npm install @coffer-org/meta
8
+ npx coffer start # API + web on http://localhost:7023 (PORT to override)
9
+ ```
10
+
11
+ Bundles the runtime (`@coffer-org/server`, `@coffer-org/web`), the CLI (`@coffer-org/cli`),
12
+ and the default plugins (`@coffer-org/plugin-core`, `@coffer-org/plugin-people`).
13
+ Add more plugins with `npm install @coffer-org/plugin-<name>` and restart.
package/package.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "@coffer-org/meta",
3
+ "version": "1.1.0",
4
+ "type": "module",
5
+ "description": "Portable Coffer distribution — install + `npx coffer start`.",
6
+ "files": [
7
+ "README.md"
8
+ ],
9
+ "dependencies": {
10
+ "@coffer-org/cli": "1.1.0",
11
+ "@coffer-org/plugin-core": "1.1.0",
12
+ "@coffer-org/plugin-people": "1.1.0"
13
+ }
14
+ }