@tokis/icons 1.2.2 → 1.3.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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +8 -5
package/README.md CHANGED
@@ -15,7 +15,7 @@ npm install @tokis/icons
15
15
  ### Built-in icons
16
16
 
17
17
  ```tsx
18
- import { SearchIcon, CloseIcon, ChevronDownIcon } from '@tokis/icons';
18
+ import { SearchIcon, XIcon, ChevronDownIcon } from '@tokis/icons';
19
19
 
20
20
  function MyComponent() {
21
21
  return <SearchIcon aria-label="Search" />;
@@ -41,7 +41,7 @@ import { SearchIcon } from '@tokis/icons/lucide';
41
41
 
42
42
  ## Documentation
43
43
 
44
- Visit [tokis.dev](https://tokis.dev/docs/icons) for the full icon catalogue.
44
+ Visit [Tokis Documentation](https://prerakmathur20.github.io/TokisWebsite/) for the full icon catalogue.
45
45
 
46
46
  ## License
47
47
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tokis/icons",
3
- "version": "1.2.2",
3
+ "version": "1.3.0",
4
4
  "description": "Icon library for Tokis — tree-shakable SVG icons with native lucide-react support.",
5
5
  "type": "module",
6
6
  "main": "./dist/cjs/index.js",
@@ -8,14 +8,14 @@
8
8
  "types": "./dist/index.d.ts",
9
9
  "exports": {
10
10
  ".": {
11
- "require": "./dist/cjs/index.js",
11
+ "types": "./dist/index.d.ts",
12
12
  "import": "./dist/index.js",
13
- "types": "./dist/index.d.ts"
13
+ "require": "./dist/cjs/index.js"
14
14
  },
15
15
  "./lucide": {
16
- "require": "./dist/cjs/lucide.js",
16
+ "types": "./dist/lucide.d.ts",
17
17
  "import": "./dist/lucide.js",
18
- "types": "./dist/lucide.d.ts"
18
+ "require": "./dist/cjs/lucide.js"
19
19
  }
20
20
  },
21
21
  "files": [
@@ -65,6 +65,9 @@
65
65
  "react": "^18.0.0",
66
66
  "lucide-react": "^0.300.0"
67
67
  },
68
+ "engines": {
69
+ "node": ">=18.0.0"
70
+ },
68
71
  "publishConfig": {
69
72
  "access": "public",
70
73
  "registry": "https://registry.npmjs.org/"