@iconify-json/humbleicons 1.1.2 → 1.1.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. package/README.md +5 -3
  2. package/index.mjs +2 -2
  3. package/package.json +2 -1
package/README.md CHANGED
@@ -4,8 +4,8 @@ This package contains icon data for Humbleicons icon set.
4
4
 
5
5
  Files:
6
6
 
7
- - Icon data is stored in `icons.json` in `IconifyJSON` format. See [IconifyJSON documentation](https://docs.iconify.design/types/iconify-json.html).
8
- - Icon set information is stored in `info.json` in `IconifyInfo` format. See [IconifyInfo documentation](https://docs.iconify.design/types/iconify-info.html).
7
+ - Icon data is stored in `icons.json` in `IconifyJSON` format. See [IconifyJSON documentation](https://iconify.design/docs/types/iconify-json.html).
8
+ - Icon set information is stored in `info.json` in `IconifyInfo` format. See [IconifyInfo documentation](https://iconify.design/docs/types/iconify-info.html).
9
9
 
10
10
  ## Installation
11
11
 
@@ -15,4 +15,6 @@ npm install @iconify-json/humbleicons --save-dev
15
15
 
16
16
  ## Usage
17
17
 
18
- Icon data can be parsed with various tools, see [Iconify documentation](https://docs.iconify.design/icons/json.html).
18
+ Icon data can be used with many tools and components, see [Iconify documentation](https://iconify.design/docs/usage/).
19
+
20
+ To convert to SVG, you can use [Iconify Utils](https://iconify.design/docs/libraries/utils/examples/export-svgs-from-icon-set.html) for basic usage or [Iconify Tools](https://iconify.design/docs/libraries/tools/).
package/index.mjs CHANGED
@@ -1,5 +1,5 @@
1
- import icons from './icons.json';
2
- import info from './info.json';
1
+ import icons from './icons.json' assert { type: 'json' };
2
+ import info from './info.json' assert { type: 'json' };
3
3
 
4
4
  const metadata = {};
5
5
  const chars = {};
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@iconify-json/humbleicons",
3
3
  "description": "Humbleicons icon set in Iconify JSON format",
4
- "version": "1.1.2",
4
+ "version": "1.1.4",
5
5
  "iconSetVersion": "1.9.0",
6
6
  "main": "index.js",
7
7
  "module": "index.mjs",
@@ -12,6 +12,7 @@
12
12
  "exports": {
13
13
  "./*": "./*",
14
14
  ".": {
15
+ "types": "./index.d.ts",
15
16
  "require": "./index.js",
16
17
  "import": "./index.mjs"
17
18
  },