@claspo/components 1.1.19 → 1.1.20

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 (3) hide show
  1. package/LICENSE.md +59 -0
  2. package/README.md +3 -0
  3. package/package.json +4 -4
package/LICENSE.md ADDED
@@ -0,0 +1,59 @@
1
+ Claspo Base Components Source License (Source-Available, Ecosystem-Restricted)
2
+ Version 1.0 — Effective Date: 2026-01-26
3
+
4
+ Copyright (c) 2026 Claspo Inc. All rights reserved.
5
+
6
+ This repository contains source code for Claspo base components (the “Software”).
7
+ The Software is NOT open source. You may view and modify the Software under the terms below.
8
+
9
+ 1. Definitions
10
+ 1.1 “Claspo” means Claspo Inc.
11
+ 1.2 “Software” means the source code, build scripts, assets, and documentation in this repository, excluding third-party dependencies under their own licenses.
12
+ 1.3 “Permitted Environment” means (a) the Claspo Platform (claspo.io), and/or (b) an Authorized White-Label Product (a product embedding the Claspo builder under a valid paid agreement/subscription with Claspo).
13
+ 1.4 “Production Use” means use of the Software (or any derivative) in a live environment for the benefit of end users or customers, whether paid or free, including SaaS, self-hosted, embedded, or “as-a-service”.
14
+
15
+ 2. License Grant (Limited)
16
+ Subject to your continuous compliance with this License, Claspo grants you a limited, worldwide, non-exclusive, non-transferable, non-sublicensable, revocable license to:
17
+ 2.1 View, copy, and modify the Software for the purpose of:
18
+ (a) developing, testing, and running it within the Permitted Environment; and/or
19
+ (b) developing components, extensions, or integrations intended to run within the Permitted Environment.
20
+ 2.2 Submit pull requests or contributions to Claspo (if accepted by Claspo), subject to Section 6.
21
+
22
+ 3. Restrictions (Ecosystem Only)
23
+ You must NOT, and must NOT permit any third party to:
24
+ 3.1 Use the Software (or derivatives) for any Production Use outside the Permitted Environment.
25
+ 3.2 Sell, resell, license, sublicense, rent, lease, distribute, or otherwise provide the Software (or derivatives) to any third party as a standalone library, UI kit, component pack, template pack, or developer toolkit.
26
+ 3.3 Offer the Software (or derivatives) as a hosted service, platform, or “as-a-service” solution, except within the Permitted Environment.
27
+ 3.4 Use the Software (or derivatives) to build or operate a competing product, service, editor/builder, or platform that offers substantially similar functionality to the Claspo builder, widgets, popup/onsite campaign tooling, or component framework.
28
+ 3.5 Remove or alter proprietary notices, copyright notices, or license terms.
29
+ 3.6 Circumvent or disable any technical limitations, security measures, license checks, or access controls.
30
+
31
+ 4. Attribution; Notices
32
+ You must preserve all copyright, license, and proprietary notices in all copies and derivatives.
33
+
34
+ 5. Ownership
35
+ The Software is and remains the exclusive property of Claspo and its licensors. All rights not expressly granted are reserved. No ownership interest is transferred.
36
+
37
+ 6. Contributions
38
+ If you contribute code to Claspo (via pull requests or otherwise), you grant Claspo a perpetual, irrevocable, worldwide, royalty-free right to use, reproduce, modify, sublicense, and distribute your contribution as part of the Software under any terms. (Claspo may require a separate CLA for certain contributions.)
39
+
40
+ 7. Commercial Licensing / Exceptions
41
+ If you want to use the Software outside the Permitted Environment, or you want to distribute or sell it (or derivatives), you must obtain a separate written commercial license from Claspo.
42
+ Contact: legal@claspo.io
43
+
44
+ 8. Disclaimer of Warranties
45
+ THE SOFTWARE IS PROVIDED “AS IS” AND “AS AVAILABLE”. TO THE MAXIMUM EXTENT PERMITTED BY LAW, CLASPO DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT.
46
+
47
+ 9. Limitation of Liability
48
+ TO THE MAXIMUM EXTENT PERMITTED BY LAW, IN NO EVENT WILL CLASPO BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, OR PUNITIVE DAMAGES, OR ANY LOSS OF PROFITS, REVENUE, DATA, OR GOODWILL, ARISING OUT OF OR RELATED TO THE SOFTWARE OR THIS LICENSE, EVEN IF ADVISED OF THE POSSIBILITY.
49
+ CLASPO’S TOTAL LIABILITY UNDER THIS LICENSE WILL NOT EXCEED USD $100.
50
+
51
+ 10. Termination
52
+ This License is effective until terminated. Claspo may terminate it immediately if you breach it. Upon termination, you must cease use and destroy all copies under your control. Sections 4–10 survive.
53
+
54
+ 11. Governing Law; Venue
55
+ This License is governed by the laws of the State of Delaware, USA, without regard to conflict of laws principles. Exclusive venue: state or federal courts located in Delaware.
56
+
57
+ 12. Contact
58
+ Claspo Inc.
59
+ Legal: legal@claspo.io
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # @claspo/components
2
+
3
+ Claspo Base Components
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@claspo/components",
3
- "version": "1.1.19",
3
+ "version": "1.1.20",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "prebuild": "rm -rf out",
@@ -9,7 +9,7 @@
9
9
  "test": "jest --no-cache --config jest.config.js",
10
10
  "lint": "eslint",
11
11
  "bundle": "rm -rf out && npm i && npm run test && npm run build",
12
- "package": "npm run bundle && cp package.json out && cd out && npm publish --access=public && cd .."
12
+ "package": "npm run bundle && cp package.json LICENSE.md README.md out && cd out && npm publish --access=public && cd .."
13
13
  },
14
14
  "engines": {
15
15
  "node": ">=18.16.0"
@@ -35,6 +35,6 @@
35
35
  "webpack-cli": "^6.0.1"
36
36
  },
37
37
  "author": "alex-chernysh",
38
- "license": "",
39
- "homepage": "https://claspo.io/"
38
+ "license": "LICENSE.md",
39
+ "homepage": "https://docs.claspo.io/"
40
40
  }