@createiq/backend-licenses 1.0.0

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.
@@ -0,0 +1,31 @@
1
+ import { Info } from 'spdx-expression-parse';
2
+
3
+ type LicenseInformation = {
4
+ /**
5
+ * The fully qualified name of the package
6
+ */
7
+ name: string;
8
+ /**
9
+ * The declared author of the package, if known
10
+ */
11
+ author?: string;
12
+ /**
13
+ * The website of the package, if known
14
+ */
15
+ website?: string;
16
+ /**
17
+ * The SPDX license information for the package
18
+ */
19
+ licenses?: Info;
20
+ /**
21
+ * The license text of the package
22
+ */
23
+ licenseText?: string;
24
+ /**
25
+ * Any additional notice text for the package
26
+ */
27
+ noticeText?: string;
28
+ };
29
+ declare const _default: readonly LicenseInformation[];
30
+
31
+ export { type LicenseInformation, _default as default };
@@ -0,0 +1,31 @@
1
+ import { Info } from 'spdx-expression-parse';
2
+
3
+ type LicenseInformation = {
4
+ /**
5
+ * The fully qualified name of the package
6
+ */
7
+ name: string;
8
+ /**
9
+ * The declared author of the package, if known
10
+ */
11
+ author?: string;
12
+ /**
13
+ * The website of the package, if known
14
+ */
15
+ website?: string;
16
+ /**
17
+ * The SPDX license information for the package
18
+ */
19
+ licenses?: Info;
20
+ /**
21
+ * The license text of the package
22
+ */
23
+ licenseText?: string;
24
+ /**
25
+ * Any additional notice text for the package
26
+ */
27
+ noticeText?: string;
28
+ };
29
+ declare const _default: readonly LicenseInformation[];
30
+
31
+ export { type LicenseInformation, _default as default };