mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-21 09:38:01 +02:00
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;
|