flusterduck 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/LICENSE.md +23 -0
  2. package/package.json +5 -4
package/LICENSE.md ADDED
@@ -0,0 +1,23 @@
1
+ PROPRIETARY LICENSE FOR FLUSTERDUCK
2
+
3
+ Copyright (c) 2026 Creayo
4
+
5
+ 1. DEFINITIONS
6
+ "Software" refers to the Flusterduck source code, compiled binaries, SDKs, libraries, and documentation.
7
+ "Package" refers to the officially distributed compiled artifacts (e.g., via NPM).
8
+
9
+ 2. USAGE GRANT
10
+ Subject to the terms of this License, Creayo hereby grants you a non-exclusive, worldwide, royalty-free license to use, incorporate, and bundle the compiled Packages into your own applications for any purpose, including commercial use.
11
+
12
+ 3. SOURCE CODE RESTRICTIONS
13
+ You are strictly prohibited from:
14
+ a) Copying, modifying, or distributing the Software's original source code.
15
+ b) Reverse engineering, decompiling, or disassembling the Software or any of its components.
16
+ c) Creating derivative works based on the Software's source code.
17
+ d) Removing or altering any copyright notices or branding from the Software.
18
+
19
+ 4. OWNERSHIP
20
+ Creayo retains all rights, title, and interest in and to the Software, including all intellectual property rights.
21
+
22
+ 5. DISCLAIMER OF WARRANTY
23
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "flusterduck",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Lightweight UX confusion monitoring SDK",
5
- "license": "UNLICENSED",
5
+ "license": "SEE LICENSE IN LICENSE.md",
6
6
  "type": "module",
7
7
  "main": "./dist/index.cjs",
8
8
  "module": "./dist/index.mjs",
@@ -19,7 +19,8 @@
19
19
  "jsdelivr": "dist/d.global.js",
20
20
  "sideEffects": false,
21
21
  "files": [
22
- "dist"
22
+ "dist",
23
+ "LICENSE.md"
23
24
  ],
24
25
  "publishConfig": {
25
26
  "access": "public"
@@ -30,7 +31,7 @@
30
31
  "typescript": "5.9.3",
31
32
  "vitest": "2.1.9",
32
33
  "jsdom": "25.0.1",
33
- "@flusterduck/tsconfig": "0.0.0"
34
+ "@flusterduck/tsconfig": "0.1.2"
34
35
  },
35
36
  "scripts": {
36
37
  "build": "node build.mjs",