@iconode/react 2.6.2
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/LICENSE +11 -0
- package/README.md +172 -0
- package/dist/index.cjs +10300 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +48 -0
- package/dist/index.d.ts +48 -0
- package/dist/index.js +10290 -0
- package/dist/index.js.map +1 -0
- package/package.json +149 -0
package/package.json
ADDED
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@iconode/react",
|
|
3
|
+
"version": "2.6.2",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "A modern, accessible icon set with original brand colors, full TypeScript support, and delightful animations.",
|
|
6
|
+
"homepage": "https://iconode.web.app/",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"main": "dist/index.cjs",
|
|
9
|
+
"module": "dist/index.js",
|
|
10
|
+
"types": "dist/index.d.ts",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"require": "./dist/index.cjs",
|
|
15
|
+
"import": "./dist/index.js"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist"
|
|
20
|
+
],
|
|
21
|
+
"keywords": [
|
|
22
|
+
"icons",
|
|
23
|
+
"react",
|
|
24
|
+
"typescript",
|
|
25
|
+
"svg",
|
|
26
|
+
"icon-library",
|
|
27
|
+
"icon-set",
|
|
28
|
+
"accessible-icons",
|
|
29
|
+
"animated-icons",
|
|
30
|
+
"brand-icons"
|
|
31
|
+
],
|
|
32
|
+
"sideEffects": false,
|
|
33
|
+
"peerDependencies": {
|
|
34
|
+
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
|
|
35
|
+
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
|
|
36
|
+
},
|
|
37
|
+
"peerDependenciesMeta": {
|
|
38
|
+
"react": {
|
|
39
|
+
"optional": false
|
|
40
|
+
},
|
|
41
|
+
"react-dom": {
|
|
42
|
+
"optional": false
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"@emotion/react": "^11.14.0",
|
|
47
|
+
"@emotion/styled": "^11.14.1",
|
|
48
|
+
"@hugeicons/core-free-icons": "^3.1.1",
|
|
49
|
+
"@hugeicons/react": "^1.1.4",
|
|
50
|
+
"@mui/material": "^7.3.2",
|
|
51
|
+
"@types/react-syntax-highlighter": "^15.5.13",
|
|
52
|
+
"@vercel/speed-insights": "^1.2.0",
|
|
53
|
+
"lucide-react": "^0.544.0",
|
|
54
|
+
"motion": "^12.23.12",
|
|
55
|
+
"react-helmet-async": "^2.0.5",
|
|
56
|
+
"react-syntax-highlighter": "^15.6.6",
|
|
57
|
+
"rough-notation": "^0.5.1",
|
|
58
|
+
"shiki": "^3.12.2",
|
|
59
|
+
"styled-components": "^6.1.19"
|
|
60
|
+
},
|
|
61
|
+
"overrides": {
|
|
62
|
+
"react-syntax-highlighter": "15.0.0"
|
|
63
|
+
},
|
|
64
|
+
"devDependencies": {
|
|
65
|
+
"@hookform/resolvers": "^5.2.1",
|
|
66
|
+
"@radix-ui/react-accordion": "^1.2.11",
|
|
67
|
+
"@radix-ui/react-alert-dialog": "^1.1.14",
|
|
68
|
+
"@radix-ui/react-aspect-ratio": "^1.1.7",
|
|
69
|
+
"@radix-ui/react-avatar": "^1.1.10",
|
|
70
|
+
"@radix-ui/react-checkbox": "^1.3.2",
|
|
71
|
+
"@radix-ui/react-collapsible": "^1.1.11",
|
|
72
|
+
"@radix-ui/react-context-menu": "^2.2.15",
|
|
73
|
+
"@radix-ui/react-dialog": "^1.1.14",
|
|
74
|
+
"@radix-ui/react-dropdown-menu": "^2.1.15",
|
|
75
|
+
"@radix-ui/react-hover-card": "^1.1.14",
|
|
76
|
+
"@radix-ui/react-label": "^2.1.7",
|
|
77
|
+
"@radix-ui/react-menubar": "^1.1.15",
|
|
78
|
+
"@radix-ui/react-navigation-menu": "^1.2.13",
|
|
79
|
+
"@radix-ui/react-popover": "^1.1.14",
|
|
80
|
+
"@radix-ui/react-progress": "^1.1.7",
|
|
81
|
+
"@radix-ui/react-radio-group": "^1.3.7",
|
|
82
|
+
"@radix-ui/react-scroll-area": "^1.2.9",
|
|
83
|
+
"@radix-ui/react-select": "^2.2.5",
|
|
84
|
+
"@radix-ui/react-separator": "^1.1.7",
|
|
85
|
+
"@radix-ui/react-slider": "^1.3.5",
|
|
86
|
+
"@radix-ui/react-slot": "^1.2.3",
|
|
87
|
+
"@radix-ui/react-switch": "^1.2.5",
|
|
88
|
+
"@radix-ui/react-tabs": "^1.1.12",
|
|
89
|
+
"@radix-ui/react-toast": "^1.2.14",
|
|
90
|
+
"@radix-ui/react-toggle": "^1.1.9",
|
|
91
|
+
"@radix-ui/react-toggle-group": "^1.1.10",
|
|
92
|
+
"@radix-ui/react-tooltip": "^1.2.7",
|
|
93
|
+
"@react-three/drei": "^9.122.0",
|
|
94
|
+
"@react-three/fiber": "^8.18.0",
|
|
95
|
+
"@swc/core": "^1.13.3",
|
|
96
|
+
"@tailwindcss/typography": "^0.5.16",
|
|
97
|
+
"@tanstack/react-query": "^5.84.2",
|
|
98
|
+
"@types/node": "^24.2.1",
|
|
99
|
+
"@types/react": "^18.3.23",
|
|
100
|
+
"@types/react-dom": "^18.3.7",
|
|
101
|
+
"@types/react-router-dom": "^5.3.3",
|
|
102
|
+
"@types/styled-components": "^5.1.34",
|
|
103
|
+
"@types/three": "^0.176.0",
|
|
104
|
+
"@vitejs/plugin-react-swc": "^4.0.0",
|
|
105
|
+
"autoprefixer": "^10.4.21",
|
|
106
|
+
"class-variance-authority": "^0.7.1",
|
|
107
|
+
"clsx": "^2.1.1",
|
|
108
|
+
"cmdk": "^1.1.1",
|
|
109
|
+
"date-fns": "^4.1.0",
|
|
110
|
+
"embla-carousel-react": "^8.6.0",
|
|
111
|
+
"framer-motion": "^12.23.12",
|
|
112
|
+
"globals": "^16.3.0",
|
|
113
|
+
"input-otp": "^1.4.2",
|
|
114
|
+
"next-themes": "^0.4.6",
|
|
115
|
+
"postcss": "^8.5.6",
|
|
116
|
+
"prettier": "^3.6.2",
|
|
117
|
+
"prettier-plugin-tailwindcss": "^0.7.2",
|
|
118
|
+
"react": "^18.3.1",
|
|
119
|
+
"react-day-picker": "^9.8.1",
|
|
120
|
+
"react-dom": "^18.3.1",
|
|
121
|
+
"react-hook-form": "^7.62.0",
|
|
122
|
+
"react-resizable-panels": "^3.0.4",
|
|
123
|
+
"react-router-dom": "^7.9.1",
|
|
124
|
+
"recharts": "^2.12.7",
|
|
125
|
+
"rollup-plugin-visualizer": "^6.0.3",
|
|
126
|
+
"sonner": "^1.7.4",
|
|
127
|
+
"tailwind-merge": "^2.6.0",
|
|
128
|
+
"tailwindcss": "^3.4.17",
|
|
129
|
+
"tailwindcss-animate": "^1.0.7",
|
|
130
|
+
"three": "^0.176.0",
|
|
131
|
+
"tsup": "^8.5.1",
|
|
132
|
+
"tsx": "^4.20.3",
|
|
133
|
+
"typescript": "^5.9.2",
|
|
134
|
+
"vaul": "^1.1.2",
|
|
135
|
+
"vite": "^7.1.2",
|
|
136
|
+
"vite-plugin-compression": "^0.5.1",
|
|
137
|
+
"vitest": "^3.2.4"
|
|
138
|
+
},
|
|
139
|
+
"license": "MIT",
|
|
140
|
+
"scripts": {
|
|
141
|
+
"dev": "vite",
|
|
142
|
+
"build:site": "vite build",
|
|
143
|
+
"build": "tsup src/icons/index.ts",
|
|
144
|
+
"start": "vite preview",
|
|
145
|
+
"test": "vitest --run",
|
|
146
|
+
"format.fix": "prettier --write .",
|
|
147
|
+
"typecheck": "tsc"
|
|
148
|
+
}
|
|
149
|
+
}
|