@otomate/css-docx 0.0.1 → 0.0.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 +63 -0
  2. package/package.json +18 -6
package/LICENSE ADDED
@@ -0,0 +1,63 @@
1
+ Business Source License 1.1
2
+
3
+ Parameters
4
+
5
+ Licensor: Alessio G.
6
+ Licensed Work: occam — Universal Document Diffing Library
7
+ The Licensed Work is (c) 2026 Alessio G.
8
+ Additional Use Grant: You may make production use of the Licensed Work,
9
+ provided such use does not include offering the
10
+ Licensed Work to third parties on a hosted or
11
+ embedded basis which is competitive with the
12
+ Licensor's products.
13
+ Change Date: 2030-04-03
14
+ Change License: MIT
15
+
16
+ For information about alternative licensing arrangements for the Licensed
17
+ Work, please contact the Licensor.
18
+
19
+ Notice
20
+
21
+ Business Source License 1.1
22
+
23
+ Terms
24
+
25
+ The Licensor hereby grants you the right to copy, modify, create derivative
26
+ works, redistribute, and make non-production use of the Licensed Work. The
27
+ Licensor may make an Additional Use Grant, above, permitting limited
28
+ production use.
29
+
30
+ Effective on the Change Date, or the fourth anniversary of the first publicly
31
+ available distribution of a specific version of the Licensed Work under this
32
+ License, whichever comes first, the Licensor hereby grants you rights under
33
+ the terms of the Change License, and the rights granted in the paragraph
34
+ above terminate.
35
+
36
+ If your use of the Licensed Work does not comply with the requirements
37
+ currently in effect as described in this License, you must purchase a
38
+ commercial license from the Licensor, its affiliated entities, or authorized
39
+ resellers, or you must refrain from using the Licensed Work.
40
+
41
+ All copies of the original and modified Licensed Work, and derivative works
42
+ of the Licensed Work, are subject to this License. This License applies
43
+ separately for each version of the Licensed Work and the Change Date may vary
44
+ for each version of the Licensed Work released by Licensor.
45
+
46
+ You must conspicuously display this License on each original or modified copy
47
+ of the Licensed Work. If you receive the Licensed Work in original or
48
+ modified form from a third party, the terms and conditions set forth in this
49
+ License apply to your use of that work.
50
+
51
+ Any use of the Licensed Work in violation of this License will automatically
52
+ terminate your rights under this License for the current and all other
53
+ versions of the Licensed Work.
54
+
55
+ This License does not grant you any right in any trademark or logo of
56
+ Licensor or its affiliates (provided that you may use a trademark or logo of
57
+ Licensor as expressly required by this License).
58
+
59
+ TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS PROVIDED ON
60
+ AN "AS IS" BASIS. LICENSOR HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS,
61
+ EXPRESS OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF
62
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND
63
+ TITLE.
package/package.json CHANGED
@@ -1,18 +1,30 @@
1
1
  {
2
2
  "name": "@otomate/css-docx",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
7
- "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" } },
8
- "files": ["dist"],
9
- "scripts": { "build": "tsc", "typecheck": "tsc --noEmit" },
10
- "devDependencies": { "typescript": "^5.7.0" },
7
+ "exports": {
8
+ ".": {
9
+ "types": "./dist/index.d.ts",
10
+ "import": "./dist/index.js"
11
+ }
12
+ },
13
+ "files": [
14
+ "dist"
15
+ ],
16
+ "devDependencies": {
17
+ "typescript": "^5.7.0"
18
+ },
11
19
  "description": "CSS property to OOXML style mapping",
12
20
  "license": "BUSL-1.1",
13
21
  "repository": {
14
22
  "type": "git",
15
23
  "url": "https://github.com/Alessio-G/occam",
16
24
  "directory": "packages/css-docx"
25
+ },
26
+ "scripts": {
27
+ "build": "tsc",
28
+ "typecheck": "tsc --noEmit"
17
29
  }
18
- }
30
+ }