mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-21 09:38:01 +02:00
02bdb7a79c
Co-authored-by: Laurent Cozic <laurent22@users.noreply.github.com>
16 lines
447 B
TypeScript
16 lines
447 B
TypeScript
import { DependencyType } from '../../getLicenses';
|
|
import { LicenseOverride } from '../types';
|
|
|
|
const materialCommunityIconsOverride: LicenseOverride = {
|
|
packageName: 'material community icons',
|
|
replacePackagesMatching: null,
|
|
mode: DependencyType.Production,
|
|
info: {
|
|
licenses: '(Apache-2.0 AND MIT)',
|
|
repository: 'https://pictogrammers.com/docs/general/license/',
|
|
path: __dirname,
|
|
},
|
|
};
|
|
|
|
export default materialCommunityIconsOverride;
|