@iconify-json/devicon 1.1.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 +18 -0
- package/chars.json +1 -0
- package/icons.json +1985 -0
- package/index.d.ts +8 -0
- package/index.js +9 -0
- package/index.mjs +6 -0
- package/info.json +23 -0
- package/metadata.json +1 -0
- package/package.json +27 -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,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"prefix": "devicon",
|
|
3
|
+
"name": "Devicon",
|
|
4
|
+
"total": 659,
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "konpa",
|
|
7
|
+
"url": "https://github.com/devicons/devicon/tree/master"
|
|
8
|
+
},
|
|
9
|
+
"license": {
|
|
10
|
+
"title": "MIT",
|
|
11
|
+
"spdx": "MIT",
|
|
12
|
+
"url": "https://github.com/devicons/devicon/blob/master/LICENSE"
|
|
13
|
+
},
|
|
14
|
+
"samples": [
|
|
15
|
+
"windows8",
|
|
16
|
+
"tensorflow",
|
|
17
|
+
"logstash"
|
|
18
|
+
],
|
|
19
|
+
"height": 128,
|
|
20
|
+
"displayHeight": 16,
|
|
21
|
+
"category": "Brands / Social",
|
|
22
|
+
"palette": true
|
|
23
|
+
}
|
package/metadata.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
package/package.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@iconify-json/devicon",
|
|
3
|
+
"description": "Devicon icon set in Iconify JSON format",
|
|
4
|
+
"version": "1.1.0",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"module": "index.mjs",
|
|
7
|
+
"types": "index.d.ts",
|
|
8
|
+
"homepage": "https://icon-sets.iconify.design/devicon/",
|
|
9
|
+
"bugs": "https://github.com/iconify/icon-sets/issues",
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"exports": {
|
|
12
|
+
"./*": "./*",
|
|
13
|
+
".": {
|
|
14
|
+
"require": "./index.js",
|
|
15
|
+
"import": "./index.mjs"
|
|
16
|
+
},
|
|
17
|
+
"./icons.json": "./icons.json",
|
|
18
|
+
"./info.json": "./info.json"
|
|
19
|
+
},
|
|
20
|
+
"iconSet": {
|
|
21
|
+
"icons": "icons.json",
|
|
22
|
+
"info": "info.json"
|
|
23
|
+
},
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"@iconify/types": "*"
|
|
26
|
+
}
|
|
27
|
+
}
|