Update checked-in dependencies

This commit is contained in:
github-actions[bot] 2023-07-24 17:15:38 +00:00
parent 601c5ba56e
commit eff6331393
1778 changed files with 42517 additions and 154082 deletions

View file

@ -1,12 +1,28 @@
# Installation
> `npm install --save @schemastore/package`
# Type definitions for package
## Installation
```
npm i @schemastore/package
yarn add @schemastore/package
```
## Summary
# Summary
This package contains type definitions for package.
## Details
Files were exported from https://github.com/ffflorian/schemastore-updater/tree/main/schemas/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).
## Additional Details
* Last updated: Fri, Feb 24, 2023, 21:03:09 GMT
* [Schema source](https://github.com/SchemaStore/schemastore/tree/master/src/schemas/json/package)
* Last updated: Fri, Jun 30, 2023, 21:04:02 GMT
* Dependencies: none

View file

@ -15343,11 +15343,17 @@ export interface JSONSchemaForNPMPackageJsonFiles2 {
*/
bundleDependencies?: string[] | boolean;
/**
* 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 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?: {
[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
*/
@ -15450,6 +15456,10 @@ 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.
*
@ -15481,6 +15491,10 @@ 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.
*
@ -17440,7 +17454,7 @@ export interface Block {
);
"block-closing-brace-newline-after"?: NewlineSpaceWithIgnoreRule;
"block-closing-brace-newline-before"?: NewlineRule;
"block-closing-brace-space-afte"?: NewlineSpaceRule;
"block-closing-brace-space-after"?: 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": "4643ec01eaaf150d3302a3fd1e3e3cb7329b192ebec86d0660777a13c741c6b7",
"version": "0.0.8"
}
"typesPublisherContentHash": "706ba9014643c594ac6ab92494abf9e4a452b9fe9ab42b75d159300ddf0ee64e",
"version": "0.0.10"
}