
* feat(Icons removal): Removed all related icons commands and files * chore: fix (remove) all gulp related imports and task for icons * chore: removed extensions folder and switch all imports (+ small fixes) * chore: re-added defaults.json on root * feat(Icons removal): Added vsc-material-theme-icons dependency
52 lines
1.1 KiB
TypeScript
52 lines
1.1 KiB
TypeScript
import {IGenericObject} from '../interfaces/igeneric-object';
|
|
|
|
export interface IPackageJSONBadge {
|
|
description: string;
|
|
href: string;
|
|
url: string;
|
|
}
|
|
|
|
export interface IPackageJSONContributes {
|
|
commands: IPackageJSONCommand[];
|
|
configuration: IPackageJSONConfiguration;
|
|
themes: IPackageJSONTheme[];
|
|
}
|
|
|
|
export interface IPackageJSONConfiguration {
|
|
properties: {};
|
|
}
|
|
|
|
export interface IPackageJSONCommand {
|
|
category: string;
|
|
command: string;
|
|
title: string;
|
|
}
|
|
|
|
export interface IPackageJSONTheme {
|
|
label: string;
|
|
path: string;
|
|
uiTheme: string;
|
|
}
|
|
|
|
export interface IPackageJSON {
|
|
activationEvents: string[];
|
|
badges: IPackageJSONBadge[];
|
|
contributes: IPackageJSONContributes;
|
|
bugs: IGenericObject<string>;
|
|
categories: string[];
|
|
description: string;
|
|
displayName: string;
|
|
engines: IGenericObject<string>;
|
|
galleryBanner: IGenericObject<string>;
|
|
homepage: string;
|
|
icon: string;
|
|
license: string;
|
|
main: string;
|
|
name: string;
|
|
preview: boolean;
|
|
publisher: string;
|
|
repository: IGenericObject<string>;
|
|
scripts: IGenericObject<string>;
|
|
version: string;
|
|
devDependencies: IGenericObject<string>;
|
|
}
|