Fix dependency incompatibilities

This commit is contained in:
Henry Mercer 2023-07-13 11:17:33 +01:00
parent 40a500c743
commit c1f49580cf
749 changed files with 372856 additions and 91172 deletions

View file

@ -1,28 +1,12 @@
# Type definitions for package
## Installation
```
npm i @schemastore/package
yarn add @schemastore/package
```
## Summary
# Installation
> `npm install --save @schemastore/package`
# Summary
This package contains type definitions for package.
## Usage
```ts
import * as package from '@schemastore/package';
```
## Note
The definitions were auto-generated by [schemastore-updater](https://github.com/ffflorian/schemastore-updater) using [`json-schema-to-typescript`](https://www.npmjs.com/package/json-schema-to-typescript).
## Details
Files were exported from https://github.com/ffflorian/schemastore-updater/tree/main/schemas/package.
## Additional Details
* [Schema source](https://github.com/SchemaStore/schemastore/tree/master/src/schemas/json/package)
* Last updated: Fri, Jun 30, 2023, 21:04:02 GMT
* Last updated: Fri, Feb 24, 2023, 21:03:09 GMT
* Dependencies: none

View file

@ -15164,7 +15164,7 @@ export interface JSONSchemaForNPMPackageJsonFiles2 {
* This interface was referenced by `undefined`'s JSON-Schema definition
* via the `patternProperty` "^\./.+".
*/
[k: string]: PackageExportsEntry | PackageExportsFallback;
[k: string]: PackageExportsEntry | PackageExportsFallback | undefined;
}
| PackageExportsEntryObject1
| PackageExportsFallback1;
@ -15343,17 +15343,11 @@ export interface JSONSchemaForNPMPackageJsonFiles2 {
*/
bundleDependencies?: string[] | boolean;
/**
* Resolutions is used to support selective version resolutions using yarn, which lets you define custom package versions or ranges inside your dependencies. For npm, use overrides instead. See: https://classic.yarnpkg.com/en/docs/selective-version-resolutions
* Resolutions is used to support selective version resolutions, which lets you define custom package versions or ranges inside your dependencies. See: https://classic.yarnpkg.com/en/docs/selective-version-resolutions
*/
resolutions?: {
[k: string]: unknown | undefined;
};
/**
* Overrides is used to support selective version overrides using npm, which lets you define custom package versions or ranges inside your dependencies. For yarn, use resolutions instead. See: https://docs.npmjs.com/cli/v9/configuring-npm/package-json#overrides
*/
overrides?: {
[k: string]: unknown | undefined;
};
/**
* Defines which package manager is expected to be used when working on the current project. This field is currently experimental and needs to be opted-in; see https://nodejs.org/api/corepack.html
*/
@ -15456,10 +15450,6 @@ export interface PackageExportsEntryObject {
* The module path that is resolved when no other export type matches.
*/
default?: PackageExportsEntry | PackageExportsFallback;
/**
* The module path that is resolved for TypeScript types when this specifier is imported. Should be listed before other conditions.
*/
types?: PackageExportsEntry | PackageExportsFallback;
/**
* The module path that is resolved when this environment matches the property name.
*
@ -15469,7 +15459,7 @@ export interface PackageExportsEntryObject {
* This interface was referenced by `PackageExportsEntryObject1`'s JSON-Schema definition
* via the `patternProperty` "^(?![\.0-9]).".
*/
[k: string]: PackageExportsEntry | PackageExportsFallback;
[k: string]: PackageExportsEntry | PackageExportsFallback | undefined;
}
/**
* Used to specify conditional exports, note that Conditional exports are unsupported in older environments, so it's recommended to use the fallback array option if support for those environments is a concern.
@ -15491,10 +15481,6 @@ export interface PackageExportsEntryObject1 {
* The module path that is resolved when no other export type matches.
*/
default?: PackageExportsEntry | PackageExportsFallback;
/**
* The module path that is resolved for TypeScript types when this specifier is imported. Should be listed before other conditions.
*/
types?: PackageExportsEntry | PackageExportsFallback;
/**
* The module path that is resolved when this environment matches the property name.
*
@ -15504,7 +15490,7 @@ export interface PackageExportsEntryObject1 {
* This interface was referenced by `PackageExportsEntryObject1`'s JSON-Schema definition
* via the `patternProperty` "^(?![\.0-9]).".
*/
[k: string]: PackageExportsEntry | PackageExportsFallback;
[k: string]: PackageExportsEntry | PackageExportsFallback | undefined;
}
/**
* Used to inform about ways to help fund development of the package.
@ -17454,7 +17440,7 @@ export interface Block {
);
"block-closing-brace-newline-after"?: NewlineSpaceWithIgnoreRule;
"block-closing-brace-newline-before"?: NewlineRule;
"block-closing-brace-space-after"?: NewlineSpaceRule;
"block-closing-brace-space-afte"?: NewlineSpaceRule;
"block-closing-brace-space-before"?: NewlineSpaceRule1;
"block-no-empty"?: BooleanRule1;
"block-no-single-line"?: BooleanRule2;

View file

@ -9,6 +9,6 @@
"scripts": {},
"typeScriptVersion": "2.2",
"types": "index.d.ts",
"typesPublisherContentHash": "a9db191a0837de202d389790e2cdc71e88bdb01345bff7442bc006330cd5b610",
"version": "0.0.9"
"typesPublisherContentHash": "4643ec01eaaf150d3302a3fd1e3e3cb7329b192ebec86d0660777a13c741c6b7",
"version": "0.0.8"
}