@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/README.md +20 -0
- package/chars.json +1 -0
- package/icons.json +3740 -0
- package/index.d.ts +8 -0
- package/index.js +9 -0
- package/index.mjs +6 -0
- package/info.json +24 -0
- package/metadata.json +1 -0
- package/package.json +28 -0
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
package/index.mjs
ADDED
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
|
+
}
|