@multitenant/next 0.5.0 → 0.5.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.
- package/README.md +7 -1
- package/package.json +11 -1
package/README.md
CHANGED
|
@@ -15,4 +15,10 @@ npm install @multitenant/next next react
|
|
|
15
15
|
|
|
16
16
|
Subpaths such as `@multitenant/next-app/auto` are available via this package’s dependencies (import from `@multitenant/next-app/auto` or add a direct dependency if your bundler requires it).
|
|
17
17
|
|
|
18
|
-
See [docs/FRAMEWORKS/overview.md](
|
|
18
|
+
See [docs/FRAMEWORKS/overview.md](https://github.com/klypalskyi/multitenant/blob/master/docs/FRAMEWORKS/overview.md) and [PLAN.md](https://github.com/klypalskyi/multitenant/blob/master/PLAN.md) Phase 2.2.
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
## Open source
|
|
23
|
+
|
|
24
|
+
MIT licensed — [**github.com/klypalskyi/multitenant**](https://github.com/klypalskyi/multitenant) · [Issues](https://github.com/klypalskyi/multitenant/issues) · [npm](https://www.npmjs.com/package/@multitenant/next)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@multitenant/next",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "Meta-package: re-exports @multitenant/core, config, react, next-app for a single install line",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -19,6 +19,16 @@
|
|
|
19
19
|
"next": ">=13.0.0",
|
|
20
20
|
"react": ">=18.0.0"
|
|
21
21
|
},
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/klypalskyi/multitenant.git",
|
|
26
|
+
"directory": "packages/next"
|
|
27
|
+
},
|
|
28
|
+
"bugs": {
|
|
29
|
+
"url": "https://github.com/klypalskyi/multitenant/issues"
|
|
30
|
+
},
|
|
31
|
+
"homepage": "https://github.com/klypalskyi/multitenant/tree/master/packages/next",
|
|
22
32
|
"publishConfig": {
|
|
23
33
|
"access": "public"
|
|
24
34
|
}
|