@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.
- package/README.md +5 -0
- package/dist/index.cjs +24906 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +31 -0
- package/dist/index.d.ts +31 -0
- package/dist/index.js +24883 -0
- package/dist/index.js.map +1 -0
- package/index.ts +36 -0
- package/oss-licenses.json +2867 -0
- package/oss-licenses.json.sha256 +1 -0
- package/package.json +24 -0
- package/tsconfig.json +16 -0
- package/tsup.config.ts +14 -0
package/dist/index.d.cts
ADDED
|
@@ -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 };
|
package/dist/index.d.ts
ADDED
|
@@ -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 };
|