@edwinvakayil/calligraphy 1.2.1 → 1.2.2
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 +44 -0
- package/README.md +7 -1
- package/package.json +4 -3
package/LICENSE
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
Copyright (c) 2025 Edwin Vakayil. All rights reserved.
|
|
2
|
+
|
|
3
|
+
PROPRIETARY SOFTWARE LICENSE
|
|
4
|
+
|
|
5
|
+
This software and its source code, documentation, and all associated files
|
|
6
|
+
(collectively, the "Software") are the exclusive intellectual property of
|
|
7
|
+
Edwin Vakayil ("the Author").
|
|
8
|
+
|
|
9
|
+
RESTRICTIONS — the following are strictly prohibited without prior written
|
|
10
|
+
permission from the Author:
|
|
11
|
+
|
|
12
|
+
1. Copying, reproducing, or duplicating the Software in whole or in part.
|
|
13
|
+
2. Modifying, adapting, translating, or creating derivative works based
|
|
14
|
+
on the Software.
|
|
15
|
+
3. Distributing, sublicensing, selling, renting, leasing, or transferring
|
|
16
|
+
the Software to any third party.
|
|
17
|
+
4. Reverse engineering, decompiling, or disassembling the Software.
|
|
18
|
+
5. Removing or altering any proprietary notices, labels, or marks on the
|
|
19
|
+
Software.
|
|
20
|
+
6. Using the Software's name, branding, or design as the basis for a
|
|
21
|
+
competing product.
|
|
22
|
+
|
|
23
|
+
PERMITTED USE
|
|
24
|
+
|
|
25
|
+
The Software may be installed and used solely for personal or internal
|
|
26
|
+
business purposes by individuals or organisations who have obtained the
|
|
27
|
+
Software through an authorised channel (e.g. npm install from the
|
|
28
|
+
official registry listing). No other rights are granted.
|
|
29
|
+
|
|
30
|
+
NO WARRANTY
|
|
31
|
+
|
|
32
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
33
|
+
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
34
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
|
|
35
|
+
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER
|
|
36
|
+
LIABILITY ARISING FROM THE USE OF OR INABILITY TO USE THE SOFTWARE.
|
|
37
|
+
|
|
38
|
+
ENFORCEMENT
|
|
39
|
+
|
|
40
|
+
Any unauthorised use, reproduction, or distribution of the Software may
|
|
41
|
+
result in civil and criminal penalties and will be prosecuted to the
|
|
42
|
+
maximum extent permitted by law.
|
|
43
|
+
|
|
44
|
+
For licensing inquiries or permissions, contact the Author directly.
|
package/README.md
CHANGED
|
@@ -224,4 +224,10 @@ All are on Google Fonts and auto-injected when passed to the `font` prop.
|
|
|
224
224
|
|
|
225
225
|
## License
|
|
226
226
|
|
|
227
|
-
|
|
227
|
+
Copyright (c) 2025 Edwin Vakayil. All rights reserved.
|
|
228
|
+
|
|
229
|
+
This package is proprietary software. You may install and use it for personal
|
|
230
|
+
or internal business purposes, but you may not copy, modify, distribute, or
|
|
231
|
+
create derivative works from it without explicit written permission from the author.
|
|
232
|
+
|
|
233
|
+
See the [LICENSE](./LICENSE) file for full terms.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@edwinvakayil/calligraphy",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.2",
|
|
4
4
|
"description": "A lightweight React + TypeScript typography component with Google Fonts support. Scale from Display to Caption with a single prop.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -26,8 +26,9 @@
|
|
|
26
26
|
"ui",
|
|
27
27
|
"component"
|
|
28
28
|
],
|
|
29
|
-
"author": "",
|
|
30
|
-
"
|
|
29
|
+
"author": "Edwin Vakayil",
|
|
30
|
+
"website": "https://edwinvakayil.com",
|
|
31
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
31
32
|
"peerDependencies": {
|
|
32
33
|
"react": ">=17.0.0",
|
|
33
34
|
"react-dom": ">=17.0.0"
|