@iconify-json/material-icon-theme 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts ADDED
@@ -0,0 +1,8 @@
1
+ import type { IconifyJSON, IconifyInfo, IconifyMetaData, IconifyChars } from '@iconify/types';
2
+
3
+ export { IconifyJSON, IconifyInfo, IconifyMetaData, IconifyChars };
4
+
5
+ export declare const icons: IconifyJSON;
6
+ export declare const info: IconifyInfo;
7
+ export declare const metadata: IconifyMetaData;
8
+ export declare const chars: IconifyChars;
package/index.js ADDED
@@ -0,0 +1,9 @@
1
+ const icons = require('./icons.json');
2
+ const info = require('./info.json');
3
+ const metadata = {};
4
+ const chars = {};
5
+
6
+ exports.icons = icons;
7
+ exports.info = info;
8
+ exports.metadata = metadata;
9
+ exports.chars = chars;
package/index.mjs ADDED
@@ -0,0 +1,6 @@
1
+ import icons from './icons.json' with { type: 'json' };
2
+ import info from './info.json' with { type: 'json' };
3
+
4
+ const metadata = {};
5
+ const chars = {};
6
+ export { icons, info, metadata, chars };
package/info.json ADDED
@@ -0,0 +1,24 @@
1
+ {
2
+ "prefix": "material-icon-theme",
3
+ "name": "Material Icon Theme",
4
+ "total": 1020,
5
+ "author": {
6
+ "name": "Material Extensions",
7
+ "url": "https://github.com/material-extensions/vscode-material-icon-theme"
8
+ },
9
+ "license": {
10
+ "title": "MIT",
11
+ "spdx": "MIT",
12
+ "url": "https://github.com/material-extensions/vscode-material-icon-theme/blob/main/LICENSE"
13
+ },
14
+ "samples": [
15
+ "zip",
16
+ "email",
17
+ "folder-upload",
18
+ "stackblitz",
19
+ "tree",
20
+ "vscode"
21
+ ],
22
+ "category": "Programming",
23
+ "palette": true
24
+ }
package/metadata.json ADDED
@@ -0,0 +1 @@
1
+ {}
package/package.json ADDED
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "@iconify-json/material-icon-theme",
3
+ "description": "Material Icon Theme icon set in Iconify JSON format",
4
+ "version": "1.2.0",
5
+ "main": "index.js",
6
+ "module": "index.mjs",
7
+ "types": "index.d.ts",
8
+ "homepage": "https://icon-sets.iconify.design/material-icon-theme/",
9
+ "bugs": "https://github.com/iconify/icon-sets/issues",
10
+ "license": "MIT",
11
+ "exports": {
12
+ "./*": "./*",
13
+ ".": {
14
+ "types": "./index.d.ts",
15
+ "require": "./index.js",
16
+ "import": "./index.mjs"
17
+ },
18
+ "./icons.json": "./icons.json",
19
+ "./info.json": "./info.json"
20
+ },
21
+ "iconSet": {
22
+ "icons": "icons.json",
23
+ "info": "info.json"
24
+ },
25
+ "dependencies": {
26
+ "@iconify/types": "*"
27
+ }
28
+ }