@deemlol/next-icons 0.0.5 → 0.1.1

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 CHANGED
@@ -8,7 +8,7 @@ Lightweight library for React and Next.js, designed for simplicity and seamless
8
8
 
9
9
  ## Important Information
10
10
 
11
- - Website is not done yet, you can only see avaiable icons in the source code of the package, in **icons** folder.
11
+ - Website is not done yet, you can only see avaiable icons in the source code of the package, in [**icons**](https://github.com/Next-Icons/next-icons/tree/main/src/icons) folder.
12
12
 
13
13
  ## Installation
14
14
 
@@ -59,7 +59,3 @@ You can also use custom style, if you want to use some effect or something...
59
59
  - Prop: **set** | Type: **string** | Options: **light**, **bold**, **two-tone**, **bulk**, **broken**, **curved** | Default: **light**
60
60
  - Prop: **stroke** | Type: **string** | Options: **light**, **regular**, **bold** | Default: **regular**
61
61
  - Prop: **style** | Type: **object**
62
-
63
- ## License
64
-
65
- MIT © [Alexandr Virgovič](https://github.com/devdeem)
package/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
- "version": "0.0.5",
2
+ "version": "0.1.1",
3
3
  "name": "@deemlol/next-icons",
4
4
  "description": "A lightweight icon library for React and Next.js, designed for simplicity and seamless integration.",
5
- "types": "/dist/next-icons.d.ts",
5
+ "module": "dist/index.modern.js",
6
+ "types": "dist/next-icons.d.ts",
6
7
  "main": "dist/index.js",
7
8
  "scripts": {
8
9
  "format:check": "prettier --check .",
9
10
  "format:write": "prettier --write .",
10
- "build": "microbundle-crl --define process.env.NODE_ENV=production --compress --strict --format modern,cjs && npm run copytypes",
11
+ "build": "microbundle-crl --define process.env.NODE_ENV=production --compress --strict --format modern,cjs",
11
12
  "copytypes": "cp next-icons.d.ts dist/next-icons.d.ts",
12
13
  "start": "microbundle-crl watch --no-compress --format modern,cjs",
13
14
  "prepare": "run-s build",
@@ -34,10 +35,10 @@
34
35
  "homepage": "https://www.next-icons.xyz",
35
36
  "repository": {
36
37
  "type": "git",
37
- "url": "https://github.com/devdeem/next-icons.git"
38
+ "url": "https://github.com/Next-Icons/next-icons.git"
38
39
  },
39
40
  "bugs": {
40
- "url": "https://github.com/devdeem/next-icons/issues"
41
+ "url": "https://github.com/Next-Icons/next-icons/issues"
41
42
  },
42
43
  "engines": {
43
44
  "node": ">=20"