create-revealui 0.5.5 → 0.5.7

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/LICENSE.commercial +90 -0
  2. package/package.json +2 -2
@@ -0,0 +1,90 @@
1
+ RevealUI Studio — Commercial Licensing for Pro Packages
2
+
3
+ This file is an explainer for the dual-license structure of this repository.
4
+ It is NOT a standalone license document; the canonical license terms for
5
+ each Pro package live in that package's own LICENSE file.
6
+
7
+ ## Repository Licensing Overview
8
+
9
+ Most of this repository (the OSS packages, apps, scripts, docs, and tooling)
10
+ is licensed under the MIT License. See LICENSE in the repository root for
11
+ those terms.
12
+
13
+ A small number of "Pro" packages are licensed under the Functional Source
14
+ License v1.1 with MIT Future License (FSL-1.1-MIT) instead of MIT. Those
15
+ packages each carry their own LICENSE file containing the canonical FSL
16
+ terms; this file documents which packages are covered and what FSL-1.1-MIT
17
+ permits and restricts.
18
+
19
+ ## Pro Packages Covered
20
+
21
+ The following packages distributed in this repository are licensed under
22
+ FSL-1.1-MIT, not MIT:
23
+
24
+ - @revealui/ai (see packages/ai/LICENSE)
25
+ - @revealui/harnesses (see packages/harnesses/LICENSE)
26
+
27
+ Additional Pro packages may be added in future. The presence of a LICENSE
28
+ file inside a package directory containing the FSL-1.1-MIT text is the
29
+ authoritative signal that the package is governed by FSL terms rather than
30
+ the root MIT LICENSE.
31
+
32
+ ## What FSL-1.1-MIT Permits
33
+
34
+ Source code for Pro packages is publicly available. You may:
35
+
36
+ - Use the package internally for any purpose, including commercial use
37
+ - Modify the package and distribute derivative works under the same terms
38
+ - Inspect, audit, and debug the source
39
+ - Depend on the package from your own software
40
+
41
+ ## What FSL-1.1-MIT Restricts
42
+
43
+ You may NOT make the functionality of a Pro package available to third
44
+ parties as a service that competes with RevealUI Studio's commercial
45
+ offerings. The full restriction text in each per-package LICENSE controls;
46
+ in plain language, prohibited uses include:
47
+
48
+ - Hosting the package as part of a SaaS that primarily delivers the
49
+ package's functionality
50
+ - Offering a service whose value derives entirely or primarily from the
51
+ package
52
+ - Repackaging the functionality for redistribution as a competing service
53
+
54
+ If you are unsure whether your intended use is restricted, contact
55
+ founder@revealui.com before relying on the package.
56
+
57
+ ## Change Date and MIT Conversion
58
+
59
+ Each Pro package's LICENSE file specifies a Change Date. On the earlier of
60
+ that date or the fourth anniversary of the first publicly-available
61
+ distribution of a specific version of the package under FSL, the package
62
+ automatically converts to the MIT License (the "Change License"). After
63
+ conversion, all FSL restrictions are removed for the version in question
64
+ and going forward.
65
+
66
+ This means every Pro package in this repository will eventually become MIT;
67
+ FSL-1.1-MIT is a time-limited restriction, not a permanent one.
68
+
69
+ ## Commercial Licensing Alternatives
70
+
71
+ If FSL-1.1-MIT terms do not fit your use case (for example, you are
72
+ building a service that the FSL would prohibit, or you need contractual
73
+ guarantees beyond what an open license provides), commercial licensing is
74
+ available.
75
+
76
+ Contact: founder@revealui.com
77
+
78
+ ## Canonical FSL-1.1-MIT Text
79
+
80
+ The Functional Source License v1.1 with MIT Future License is published at:
81
+
82
+ https://fsl.software/FSL-1.1-MIT.template.md
83
+
84
+ The full canonical text is reproduced verbatim in each Pro package's
85
+ LICENSE file. If there is any conflict between this explainer and a
86
+ per-package LICENSE file, the per-package LICENSE file controls.
87
+
88
+ ---
89
+
90
+ Copyright (c) 2025-2026 RevealUI Studio
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-revealui",
3
- "version": "0.5.5",
3
+ "version": "0.5.7",
4
4
  "description": "Create a new RevealUI project",
5
5
  "keywords": [
6
6
  "cli",
@@ -18,7 +18,7 @@
18
18
  "create-revealui": "./bin/create-revealui.js"
19
19
  },
20
20
  "dependencies": {
21
- "@revealui/cli": "0.7.0"
21
+ "@revealui/cli": "0.7.2"
22
22
  },
23
23
  "engines": {
24
24
  "node": ">=24.13.0"