@lab206/dom 0.1.1 → 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 +114 -0
  2. package/package.json +9 -10
package/LICENSE ADDED
@@ -0,0 +1,114 @@
1
+ Business Source License 1.1
2
+
3
+ Parameters
4
+
5
+ Licensor: Scott Powers
6
+
7
+ Licensed Work: Powers
8
+ The Licensed Work is (c) 2026 Scott Powers
9
+
10
+ Additional Use Grant: You may make production use of the Licensed Work,
11
+ provided You do not use the Licensed Work for a
12
+ Competing Offering.
13
+
14
+ A “Competing Offering” is a product, hosted service,
15
+ library, framework, design system, or documentation
16
+ site whose primary purpose is to provide a
17
+ general-purpose UI runtime, component library, or
18
+ design-system kit that substitutes for the Licensed
19
+ Work (including rebranded or forked distributions
20
+ marketed as a competing UI kit or “Powers
21
+ alternative”).
22
+
23
+ Building end-user applications, internal tools, or
24
+ client project work *with* the Licensed Work is
25
+ allowed and is not a Competing Offering.
26
+
27
+ Change Date: Four years from the first public release of each
28
+ version of the Licensed Work, or 2030-08-15,
29
+ whichever is earlier for that version
30
+
31
+ Change License: Apache License, Version 2.0
32
+
33
+ For information about alternative licensing arrangements for the Software,
34
+ see LICENSE-COMMERCIAL.md or contact the Licensor.
35
+
36
+ Notice
37
+
38
+ The Business Source License (this document, or the “License”) is not an Open
39
+ Source license. However, the Licensed Work will eventually be made available
40
+ under an Open Source License, as stated in this License.
41
+
42
+ License text copyright (c) 2017 MariaDB Corporation Ab, All Rights Reserved.
43
+ “Business Source License” is a trademark of MariaDB Corporation Ab.
44
+
45
+ -----------------------------------------------------------------------------
46
+
47
+ Business Source License 1.1
48
+
49
+ Terms
50
+
51
+ The Licensor hereby grants you the right to copy, modify, create derivative
52
+ works, redistribute, and make non-production use of the Licensed Work. The
53
+ Licensor may make an Additional Use Grant, above, permitting limited
54
+ production use.
55
+
56
+ Effective on the Change Date, or the fourth anniversary of the first publicly
57
+ available distribution of a specific version of the Licensed Work under this
58
+ License, whichever comes first, the Licensor hereby grants you rights under
59
+ the terms of the Change License, and the rights granted in the paragraph
60
+ above terminate.
61
+
62
+ If your use of the Licensed Work does not comply with the requirements
63
+ currently in effect as described in this License, you must purchase a
64
+ commercial license from the Licensor, its affiliated entities, or authorized
65
+ resellers, or you must refrain from using the Licensed Work.
66
+
67
+ All copies of the original and modified Licensed Work, and derivative works
68
+ of the Licensed Work, are subject to this License. This License applies
69
+ separately for each version of the Licensed Work and the Change Date may vary
70
+ for each version of the Licensed Work released by Licensor.
71
+
72
+ You must conspicuously display this License on each original or modified copy
73
+ of the Licensed Work. If you receive the Licensed Work in original or
74
+ modified form from a third party, the terms and conditions set forth in this
75
+ License apply to your use of that work.
76
+
77
+ Any use of the Licensed Work in violation of this License will automatically
78
+ terminate your rights under this License for the current and all other
79
+ versions of the Licensed Work.
80
+
81
+ This License does not grant you any right in any trademark or logo of
82
+ Licensor or its affiliates (provided that you may use a trademark or logo of
83
+ Licensor as expressly required by this License).
84
+
85
+ TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS PROVIDED ON
86
+ AN “AS IS” BASIS. LICENSOR HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS,
87
+ EXPRESS OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF
88
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND
89
+ TITLE.
90
+
91
+ MariaDB hereby grants you permission to use this License’s text to license
92
+ your works, and to refer to it using the trademark “Business Source License”,
93
+ as long as you comply with the Covenants of Licensor below.
94
+
95
+ Covenants of Licensor
96
+
97
+ In consideration of the right to use this License’s text and the “Business
98
+ Source License” name and trademark, Licensor covenants to MariaDB, and to all
99
+ other recipients of the licensed work to be provided by Licensor:
100
+
101
+ 1. To specify as the Change License the GPL Version 2.0 or any later version,
102
+ or a license that is compatible with GPL Version 2.0 or a later version,
103
+ where “compatible” means that software provided under the Change License can
104
+ be included in a program with software provided under GPL Version 2.0 or a
105
+ later version. Licensor may specify additional Change Licenses without
106
+ limitation.
107
+
108
+ 2. To either: (a) specify an additional grant of rights to use that does not
109
+ impose any additional restriction on the right granted in this License, as
110
+ the Additional Use Grant; or (b) insert the text “None”.
111
+
112
+ 3. To specify a Change Date.
113
+
114
+ 4. Not to modify this License in any other way.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lab206/dom",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Thin DOM bindings + JSX + reactive props for Powers.",
5
5
  "type": "module",
6
6
  "license": "BUSL-1.1",
@@ -36,15 +36,8 @@
36
36
  "!src/**/*.test.ts",
37
37
  "!src/**/*.test.tsx"
38
38
  ],
39
- "scripts": {
40
- "build": "tsc -p tsconfig.json",
41
- "typecheck": "tsc -p tsconfig.json --noEmit",
42
- "test": "node --import tsx --test src/*.test.ts",
43
- "size": "node --import tsx scripts/size.ts",
44
- "prepublishOnly": "pnpm run build"
45
- },
46
39
  "dependencies": {
47
- "@lab206/core": "workspace:*"
40
+ "@lab206/core": "0.1.2"
48
41
  },
49
42
  "devDependencies": {
50
43
  "esbuild": "^0.25.1",
@@ -68,5 +61,11 @@
68
61
  "type": "git",
69
62
  "url": "git+https://github.com/spowers2/powers.git",
70
63
  "directory": "packages/dom"
64
+ },
65
+ "scripts": {
66
+ "build": "tsc -p tsconfig.json",
67
+ "typecheck": "tsc -p tsconfig.json --noEmit",
68
+ "test": "node --import tsx --test src/*.test.ts",
69
+ "size": "node --import tsx scripts/size.ts"
71
70
  }
72
- }
71
+ }