@transparentcage/ui 0.0.2 → 0.0.3

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 +48 -0
  2. package/package.json +11 -9
package/LICENSE ADDED
@@ -0,0 +1,48 @@
1
+ PROPRIETARY SOFTWARE LICENSE
2
+
3
+ Copyright (c) 2026 Build Bharat. All rights reserved.
4
+
5
+ This software and associated documentation files (the "Software") are the
6
+ proprietary and confidential property of Build Bharat.
7
+
8
+ NOTICE: All information contained herein is, and remains the property of
9
+ Build Bharat. The intellectual and technical concepts contained
10
+ herein are proprietary to Build Bharat and may be covered by
11
+ patents, patent applications, and are protected by trade secret or copyright
12
+ law.
13
+
14
+ NO LICENSE GRANTED
15
+
16
+ No license, right, or interest in the Software is granted to any party under
17
+ this notice. Unauthorized copying, modification, distribution, or use of this
18
+ Software, via any medium, is strictly prohibited.
19
+
20
+ RESTRICTIONS
21
+
22
+ You may NOT, without prior written authorization from Build Bharat:
23
+
24
+ 1. Copy, reproduce, or duplicate the Software or any portion thereof.
25
+ 2. Modify, adapt, translate, or create derivative works based on the Software.
26
+ 3. Distribute, sublicense, lease, rent, loan, or otherwise transfer the
27
+ Software to any third party.
28
+ 4. Reverse engineer, disassemble, decompile, or otherwise attempt to derive
29
+ the source code of the Software.
30
+ 5. Use the Software for any commercial or non-commercial purpose.
31
+ 6. Remove or alter any proprietary notices, labels, or marks on the Software.
32
+
33
+ COMMERCIAL LICENSING
34
+
35
+ To obtain a commercial license for the Software, please contact:
36
+
37
+ Email: ashutosh.upadhyay@skopex.com
38
+ Web: http://buildbharat.club
39
+
40
+ DISCLAIMER
41
+
42
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
43
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
44
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
45
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
46
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
47
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
48
+ SOFTWARE.
package/package.json CHANGED
@@ -1,8 +1,15 @@
1
1
  {
2
2
  "name": "@transparentcage/ui",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
+ "license": "SEE LICENSE IN LICENSE",
4
5
  "private": false,
5
6
  "type": "module",
7
+ "scripts": {
8
+ "build": "tsup",
9
+ "dev": "tsup --watch",
10
+ "lint": "eslint .",
11
+ "typecheck": "tsc --noEmit"
12
+ },
6
13
  "exports": {
7
14
  ".": {
8
15
  "types": "./dist/index.d.ts",
@@ -15,7 +22,8 @@
15
22
  "module": "./dist/index.js",
16
23
  "types": "./dist/index.d.ts",
17
24
  "files": [
18
- "dist"
25
+ "dist",
26
+ "LICENSE"
19
27
  ],
20
28
  "publishConfig": {
21
29
  "access": "public"
@@ -31,11 +39,5 @@
31
39
  "react-dom": "^18.2.0",
32
40
  "tsup": "^8.0.0",
33
41
  "typescript": "^5.3.0"
34
- },
35
- "scripts": {
36
- "build": "tsup",
37
- "dev": "tsup --watch",
38
- "lint": "eslint .",
39
- "typecheck": "tsc --noEmit"
40
42
  }
41
- }
43
+ }