@21stware/rpui 0.1.0 → 0.1.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/LICENSE +20 -0
- package/package.json +4 -3
package/LICENSE
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Copyright (c) 2026 21st Ware. All Rights Reserved.
|
|
2
|
+
|
|
3
|
+
PROPRIETARY AND CONFIDENTIAL
|
|
4
|
+
|
|
5
|
+
This software and its source code are the proprietary and confidential
|
|
6
|
+
property of the copyright holder. No part of this software, in source or
|
|
7
|
+
compiled form, may be copied, reproduced, modified, published, uploaded,
|
|
8
|
+
posted, transmitted, distributed, sublicensed, or otherwise exploited in
|
|
9
|
+
any way, in whole or in part, without the prior express written permission
|
|
10
|
+
of the copyright holder.
|
|
11
|
+
|
|
12
|
+
Unauthorized copying, distribution, or modification of this software, via
|
|
13
|
+
any medium, is strictly prohibited.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
19
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
20
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@21stware/rpui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Readable Prototype UI: static UI prototype canvas and snapshot primitives implemented as Web Components.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/rpui.js",
|
|
@@ -20,7 +20,8 @@
|
|
|
20
20
|
"dist",
|
|
21
21
|
"llms.txt",
|
|
22
22
|
"skill.txt",
|
|
23
|
-
"README.md"
|
|
23
|
+
"README.md",
|
|
24
|
+
"LICENSE"
|
|
24
25
|
],
|
|
25
26
|
"scripts": {
|
|
26
27
|
"dev": "vite --open /preview/",
|
|
@@ -38,7 +39,7 @@
|
|
|
38
39
|
"snapshot",
|
|
39
40
|
"llm"
|
|
40
41
|
],
|
|
41
|
-
"license": "
|
|
42
|
+
"license": "UNLICENSED",
|
|
42
43
|
"devDependencies": {
|
|
43
44
|
"typescript": "^5.8.3",
|
|
44
45
|
"vite": "^5.4.11"
|