create-revealui 0.3.2 → 0.3.5
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.commercial +2 -3
- package/package.json +19 -19
package/LICENSE.commercial
CHANGED
|
@@ -9,9 +9,8 @@ TERMS AND CONDITIONS
|
|
|
9
9
|
|
|
10
10
|
"Software" means the RevealUI source code, documentation, and associated
|
|
11
11
|
files contained in directories and packages designated as commercial,
|
|
12
|
-
including but not limited to: packages/ai, packages/
|
|
13
|
-
|
|
14
|
-
the repository.
|
|
12
|
+
including but not limited to: packages/ai, packages/harnesses, and any
|
|
13
|
+
directory named "ee" within the repository.
|
|
15
14
|
|
|
16
15
|
"License Key" means a valid RevealUI license key obtained through an active
|
|
17
16
|
paid subscription at https://revealui.com.
|
package/package.json
CHANGED
|
@@ -1,36 +1,36 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-revealui",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.5",
|
|
4
4
|
"description": "Create a new RevealUI project",
|
|
5
|
-
"
|
|
6
|
-
"
|
|
5
|
+
"keywords": [
|
|
6
|
+
"cli",
|
|
7
|
+
"create-revealui",
|
|
8
|
+
"revealui",
|
|
9
|
+
"scaffolding"
|
|
10
|
+
],
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "https://github.com/RevealUIStudio/revealui.git",
|
|
14
|
+
"directory": "packages/create-revealui"
|
|
7
15
|
},
|
|
8
|
-
"
|
|
16
|
+
"license": "MIT",
|
|
9
17
|
"bin": {
|
|
10
18
|
"create-revealui": "./bin/create-revealui.js"
|
|
11
19
|
},
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"@revealui/cli": "0.4.0"
|
|
22
|
+
},
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": ">=24.13.0"
|
|
25
|
+
},
|
|
12
26
|
"files": [
|
|
13
27
|
"bin"
|
|
14
28
|
],
|
|
15
|
-
"dependencies": {
|
|
16
|
-
"@revealui/cli": "0.3.2"
|
|
17
|
-
},
|
|
18
|
-
"license": "MIT",
|
|
19
29
|
"publishConfig": {
|
|
20
30
|
"access": "public",
|
|
21
31
|
"registry": "https://registry.npmjs.org"
|
|
22
32
|
},
|
|
23
|
-
"
|
|
24
|
-
"type": "git",
|
|
25
|
-
"url": "https://github.com/RevealUIStudio/revealui.git",
|
|
26
|
-
"directory": "packages/create-revealui"
|
|
27
|
-
},
|
|
28
|
-
"keywords": [
|
|
29
|
-
"revealui",
|
|
30
|
-
"create-revealui",
|
|
31
|
-
"scaffolding",
|
|
32
|
-
"cli"
|
|
33
|
-
],
|
|
33
|
+
"type": "module",
|
|
34
34
|
"scripts": {
|
|
35
35
|
"lint": "biome check .",
|
|
36
36
|
"test": "echo 'No tests — thin wrapper for @revealui/cli'",
|