@claspo/renderer 17.0.4 → 17.0.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.
Files changed (2) hide show
  1. package/LICENSE.md +64 -0
  2. package/package.json +4 -3
package/LICENSE.md ADDED
@@ -0,0 +1,64 @@
1
+ Claspo SDK License Agreement (Proprietary)
2
+ Version 1.0 — Effective Date: 2026-01-26
3
+
4
+ Copyright (c) 2026 Claspo Inc. All rights reserved.
5
+
6
+ IMPORTANT: This Claspo SDK and related packages (the “SDK”) are licensed, not sold.
7
+ By downloading, installing, accessing, or using the SDK, you agree to this Agreement.
8
+
9
+ 1. Definitions
10
+ 1.1 “Claspo” means Claspo Inc.
11
+ 1.2 “SDK” means the software packages published under the @claspo npm scope (and any related documentation, examples, headers, type definitions, and updates), excluding third-party dependencies under their own licenses.
12
+ 1.3 “Claspo Platform” means the Claspo product and services accessible through claspo.io and official Claspo applications.
13
+ 1.4 “Authorized White-Label Product” means a third-party product that embeds the Claspo builder under a valid paid agreement/subscription with Claspo for white-label embedding.
14
+ 1.5 “Permitted Environment” means (a) the Claspo Platform, and/or (b) an Authorized White-Label Product.
15
+ 1.6 “Component” means code created by you that integrates with the Claspo builder using the SDK APIs.
16
+
17
+ 2. License Grant
18
+ 2.1 Subject to your continuous compliance with this Agreement, Claspo grants you a limited, worldwide, non-exclusive, non-transferable, non-sublicensable, revocable license to:
19
+ (a) install and use the SDK solely to develop, test, and build Components; and
20
+ (b) deploy and run Components solely within the Permitted Environment.
21
+
22
+ 2.2 You may distribute your own Component code to end users or customers under your chosen terms, provided you do NOT distribute the SDK itself (Section 3).
23
+
24
+ 3. Restrictions
25
+ You must NOT, and must NOT permit any third party to:
26
+ 3.1 Redistribute, resell, rent, lease, sublicense, or otherwise make the SDK available to any third party, including by bundling, vendoring, mirroring, publishing, or hosting it (except as required for normal installation via npm from the official registry).
27
+ 3.2 Use the SDK outside the Permitted Environment, including to build, operate, or enable any product or service that is not the Claspo Platform or an Authorized White-Label Product.
28
+ 3.3 Use the SDK to develop 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.
29
+ 3.4 Reverse engineer, decompile, disassemble, or otherwise attempt to derive the source code, underlying ideas, algorithms, or structure of the SDK, except to the extent such restriction is prohibited by applicable law.
30
+ 3.5 Remove, obscure, or alter any proprietary notices, trademarks, or branding included in the SDK.
31
+ 3.6 Use the SDK in violation of law, to infringe rights, or to enable security exploits.
32
+
33
+ 4. Ownership; No Transfer
34
+ 4.1 The SDK is and remains the exclusive property of Claspo and its licensors. All rights not expressly granted are reserved.
35
+ 4.2 No ownership interest in the SDK is transferred to you.
36
+
37
+ 5. Feedback
38
+ If you provide suggestions, ideas, or feedback regarding the SDK, you grant Claspo a perpetual, irrevocable, worldwide, royalty-free right to use and incorporate it without restriction.
39
+
40
+ 6. Updates
41
+ Claspo may provide updates or changes to the SDK. Claspo may change or discontinue any part of the SDK at any time.
42
+
43
+ 7. Support
44
+ Claspo has no obligation to provide support, maintenance, or updates unless separately agreed in writing.
45
+
46
+ 8. Disclaimer of Warranties
47
+ THE SDK 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.
48
+
49
+ 9. Limitation of Liability
50
+ 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 SDK OR THIS AGREEMENT, EVEN IF ADVISED OF THE POSSIBILITY.
51
+ CLASPO’S TOTAL LIABILITY UNDER THIS AGREEMENT WILL NOT EXCEED USD $100.
52
+
53
+ 10. Termination
54
+ 10.1 This Agreement is effective until terminated.
55
+ 10.2 Claspo may terminate or suspend this Agreement immediately if you breach it.
56
+ 10.3 Upon termination, you must stop using the SDK and destroy all copies in your possession or control.
57
+ 10.4 Sections 4, 5, 8, 9, 10, and 11 survive termination.
58
+
59
+ 11. Governing Law; Venue
60
+ This Agreement is governed by the laws of the State of Delaware, USA, without regard to conflict of laws principles. You agree to exclusive venue in state or federal courts located in Delaware for any dispute arising out of this Agreement.
61
+
62
+ 12. Contact
63
+ Claspo Inc.
64
+ Legal: legal@claspo.io
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@claspo/renderer",
3
- "version": "17.0.4",
3
+ "version": "17.0.5",
4
4
  "scripts": {
5
5
  "dev": " tsc --project tsconfig.json --watch",
6
6
  "build": "rm -rf out && tsc --project tsconfig.json && npm run minify",
@@ -8,7 +8,8 @@
8
8
  "minify": "find out -name '*.js' ! -name '*.d.js' -exec terser {} --compress --mangle --output {} \\;",
9
9
  "test": "jest --no-cache --coverage",
10
10
  "lint": "eslint src",
11
- "package": "npm i && npm run lint && npm run test && npm run build && cp package.json README.md out && cd out && npm publish --access=public && cd .."
11
+ "package": "npm i && npm run lint && npm run test && npm run build && cp package.json README.md LICENSE.md out && cd out && npm publish --access=public && cd ..",
12
+ "sync:docs": "node ../../scripts/sync-docs.js --package=renderer"
12
13
  },
13
14
  "engines": {
14
15
  "node": ">=18.16.0"
@@ -39,6 +40,6 @@
39
40
  "webpack-cli": "^5.1.4"
40
41
  },
41
42
  "author": "alex-chernysh",
42
- "license": "",
43
+ "license": "LICENSE.md",
43
44
  "homepage": "https://docs.claspo.io/docs/claspoeditor"
44
45
  }