developer-icons 4.2.7 → 4.3.0
Sign up to get free protection for your applications and to get access to all the features.
- package/LICENSE +21 -21
- package/README.md +66 -66
- package/package.json +70 -70
package/LICENSE
CHANGED
@@ -1,21 +1,21 @@
|
|
1
|
-
MIT License
|
2
|
-
|
3
|
-
Copyright (c) 2024 Sandesh Katwal aka xandemon
|
4
|
-
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
7
|
-
in the Software without restriction, including without limitation the rights
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
10
|
-
furnished to do so, subject to the following conditions:
|
11
|
-
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
13
|
-
copies or substantial portions of the Software.
|
14
|
-
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
-
SOFTWARE.
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2024 Sandesh Katwal aka xandemon
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
@@ -1,66 +1,66 @@
|
|
1
|
-
# Developer Icons
|
2
|
-
|
3
|
-
Welcome to **`developer-icons`**, a collection of high-quality, customizable tech icons designed for developers and designers. With full TypeScript support, these icons are perfect for use in any React or Next.js project. Alternatively, download the icons in image formats for your design needs directly from our [official website](https://xandemon.github.io/developer-icons/ "Homepage | Developer Icons").
|
4
|
-
|
5
|
-
![Developer Icons Cover Image](/public/cover-image.webp "Developer Icons")
|
6
|
-
|
7
|
-
## Features
|
8
|
-
|
9
|
-
- ⚡**Highly optimized:** Icons are optimized for performance and size. They are designed to be as small as possible while maintaining the quality.
|
10
|
-
- 🎨**Customizable:** Cusomizations are available for all icons. You can change the size, color, stroke width, and much more.
|
11
|
-
- 🔍**Perfectly scalable:** Icons are designed to be properly scaled to any size without compromising the quality.
|
12
|
-
- 🔄**Consistent icons:** No more dealing with inconsistent styles and designs. All icons are designed with a pre-defined set of rules.
|
13
|
-
- 🌗**Various variants:** Icons come with their own set of families such as light and dark mode, wordmark, and other variants.
|
14
|
-
- ⭐**Free & open-source:** Completely free and open-source with license. No need to worry about privately hidden malicious code and be a contributor yourself.
|
15
|
-
|
16
|
-
Explore more and start using `developer-icons` today to enhance your projects with stunning, customizable icons!
|
17
|
-
|
18
|
-
## Installation
|
19
|
-
|
20
|
-
To add the icons to your project, run one of the following commands:
|
21
|
-
|
22
|
-
```bash
|
23
|
-
npm i developer-icons
|
24
|
-
```
|
25
|
-
|
26
|
-
or
|
27
|
-
|
28
|
-
```bash
|
29
|
-
yarn add developer-icons
|
30
|
-
```
|
31
|
-
|
32
|
-
or
|
33
|
-
|
34
|
-
```bash
|
35
|
-
pnpm add developer-icons
|
36
|
-
```
|
37
|
-
|
38
|
-
## Usage
|
39
|
-
|
40
|
-
Import named icon components from the `developer-icons` package and use them just like any other React component, with props/attributes similar to those of an SVG:
|
41
|
-
|
42
|
-
```javascript
|
43
|
-
import { HtmlIcon, JavascriptIcon } from "developer-icons";
|
44
|
-
|
45
|
-
//inside your React component JSX
|
46
|
-
export const YourReactComponent = () => {
|
47
|
-
return (
|
48
|
-
<div>
|
49
|
-
<HtmlIcon className="html-icon" />
|
50
|
-
<JavascriptIcon size={52} style={{ marginLeft: 20 }} />
|
51
|
-
</div>
|
52
|
-
);
|
53
|
-
};
|
54
|
-
```
|
55
|
-
|
56
|
-
In this example, we import `HtmlIcon` and `JavascriptIcon` from the `developer-icons` package and use them within a React component. You can customize the icons by adjusting their `size`, `color`, `style`, and other properties.
|
57
|
-
|
58
|
-
## Contributing
|
59
|
-
|
60
|
-
We welcome contributions of all kinds, whether you're looking to add new icons, improve existing ones, or enhance the overall project. To get started, refer to our [Contributing Guidelines](https://xandemon.github.io/developer-icons/docs/contributing).
|
61
|
-
|
62
|
-
## License
|
63
|
-
|
64
|
-
Licensed under MIT License and copyrights reserved.
|
65
|
-
|
66
|
-
For complete documentation, visit our [official documentation](https://xandemon.github.io/developer-icons/docs).
|
1
|
+
# Developer Icons
|
2
|
+
|
3
|
+
Welcome to **`developer-icons`**, a collection of high-quality, customizable tech icons designed for developers and designers. With full TypeScript support, these icons are perfect for use in any React or Next.js project. Alternatively, download the icons in image formats for your design needs directly from our [official website](https://xandemon.github.io/developer-icons/ "Homepage | Developer Icons").
|
4
|
+
|
5
|
+
![Developer Icons Cover Image](/public/cover-image.webp "Developer Icons")
|
6
|
+
|
7
|
+
## Features
|
8
|
+
|
9
|
+
- ⚡**Highly optimized:** Icons are optimized for performance and size. They are designed to be as small as possible while maintaining the quality.
|
10
|
+
- 🎨**Customizable:** Cusomizations are available for all icons. You can change the size, color, stroke width, and much more.
|
11
|
+
- 🔍**Perfectly scalable:** Icons are designed to be properly scaled to any size without compromising the quality.
|
12
|
+
- 🔄**Consistent icons:** No more dealing with inconsistent styles and designs. All icons are designed with a pre-defined set of rules.
|
13
|
+
- 🌗**Various variants:** Icons come with their own set of families such as light and dark mode, wordmark, and other variants.
|
14
|
+
- ⭐**Free & open-source:** Completely free and open-source with license. No need to worry about privately hidden malicious code and be a contributor yourself.
|
15
|
+
|
16
|
+
Explore more and start using `developer-icons` today to enhance your projects with stunning, customizable icons!
|
17
|
+
|
18
|
+
## Installation
|
19
|
+
|
20
|
+
To add the icons to your project, run one of the following commands:
|
21
|
+
|
22
|
+
```bash
|
23
|
+
npm i developer-icons
|
24
|
+
```
|
25
|
+
|
26
|
+
or
|
27
|
+
|
28
|
+
```bash
|
29
|
+
yarn add developer-icons
|
30
|
+
```
|
31
|
+
|
32
|
+
or
|
33
|
+
|
34
|
+
```bash
|
35
|
+
pnpm add developer-icons
|
36
|
+
```
|
37
|
+
|
38
|
+
## Usage
|
39
|
+
|
40
|
+
Import named icon components from the `developer-icons` package and use them just like any other React component, with props/attributes similar to those of an SVG:
|
41
|
+
|
42
|
+
```javascript
|
43
|
+
import { HtmlIcon, JavascriptIcon } from "developer-icons";
|
44
|
+
|
45
|
+
//inside your React component JSX
|
46
|
+
export const YourReactComponent = () => {
|
47
|
+
return (
|
48
|
+
<div>
|
49
|
+
<HtmlIcon className="html-icon" />
|
50
|
+
<JavascriptIcon size={52} style={{ marginLeft: 20 }} />
|
51
|
+
</div>
|
52
|
+
);
|
53
|
+
};
|
54
|
+
```
|
55
|
+
|
56
|
+
In this example, we import `HtmlIcon` and `JavascriptIcon` from the `developer-icons` package and use them within a React component. You can customize the icons by adjusting their `size`, `color`, `style`, and other properties.
|
57
|
+
|
58
|
+
## Contributing
|
59
|
+
|
60
|
+
We welcome contributions of all kinds, whether you're looking to add new icons, improve existing ones, or enhance the overall project. To get started, refer to our [Contributing Guidelines](https://xandemon.github.io/developer-icons/docs/contributing).
|
61
|
+
|
62
|
+
## License
|
63
|
+
|
64
|
+
Licensed under MIT License and copyrights reserved.
|
65
|
+
|
66
|
+
For complete documentation, visit our [official documentation](https://xandemon.github.io/developer-icons/docs).
|
package/package.json
CHANGED
@@ -1,70 +1,70 @@
|
|
1
|
-
{
|
2
|
-
"name": "developer-icons",
|
3
|
-
"description": "Ready-to-use high-quality customizable tech icons - made for the developers",
|
4
|
-
"version": "4.
|
5
|
-
"type": "module",
|
6
|
-
"homepage": "https://xandemon.github.io/developer-icons",
|
7
|
-
"repository": {
|
8
|
-
"type": "git",
|
9
|
-
"url": "https://github.com/xandemon/developer-icons",
|
10
|
-
"directory": ""
|
11
|
-
},
|
12
|
-
"author": "xandemon",
|
13
|
-
"license": "MIT",
|
14
|
-
"keywords": [
|
15
|
-
"developer icons",
|
16
|
-
"tech stack icons",
|
17
|
-
"programming icons",
|
18
|
-
"coding icons",
|
19
|
-
"colorful tech icons",
|
20
|
-
"tech icons",
|
21
|
-
"programming language icons",
|
22
|
-
"icons",
|
23
|
-
"vector icons",
|
24
|
-
"svg",
|
25
|
-
"react icons"
|
26
|
-
],
|
27
|
-
"main": "dist/main.js",
|
28
|
-
"types": "dist/main.d.ts",
|
29
|
-
"files": [
|
30
|
-
"dist"
|
31
|
-
],
|
32
|
-
"scripts": {
|
33
|
-
"dev:playground": "vite",
|
34
|
-
"dev:docs": "cd docs && npm run dev",
|
35
|
-
"clean": "rimraf --glob dist && rimraf --glob lib/icons/*.tsx",
|
36
|
-
"build": "npm run clean && tsx ./lib/scripts/build.ts && tsc --p ./tsconfig-build.json && vite build",
|
37
|
-
"build:docs": "cd docs && npm run build",
|
38
|
-
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
39
|
-
"preview": "vite preview",
|
40
|
-
"preview:docs": "cd docs && npm run preview",
|
41
|
-
"prePublishOnly": "npm run build",
|
42
|
-
"sort:data": "tsx ./lib/scripts/sortData.ts",
|
43
|
-
"optimize-svgs": "svgo -f ./icons/raw -o ./icons && rimraf --glob icons/raw/*"
|
44
|
-
},
|
45
|
-
"peerDependencies": {
|
46
|
-
"react": "^18.2.0",
|
47
|
-
"react-dom": "^18.2.0"
|
48
|
-
},
|
49
|
-
"devDependencies": {
|
50
|
-
"@types/node": "^20.12.7",
|
51
|
-
"@types/react": "^18.2.66",
|
52
|
-
"@types/react-dom": "^18.2.22",
|
53
|
-
"@typescript-eslint/eslint-plugin": "^7.2.0",
|
54
|
-
"@typescript-eslint/parser": "^7.2.0",
|
55
|
-
"@vitejs/plugin-react": "^4.2.1",
|
56
|
-
"eslint": "^8.57.0",
|
57
|
-
"eslint-plugin-react-hooks": "^4.6.0",
|
58
|
-
"eslint-plugin-react-refresh": "^0.4.6",
|
59
|
-
"react": "^18.2.0",
|
60
|
-
"react-dom": "^18.2.0",
|
61
|
-
"rimraf": "^5.0.5",
|
62
|
-
"svgo": "^3.2.0",
|
63
|
-
"svgson": "^5.3.1",
|
64
|
-
"tsx": "^4.8.2",
|
65
|
-
"typescript": "^5.2.2",
|
66
|
-
"vite": "^5.2.0",
|
67
|
-
"vite-plugin-dts": "^3.9.0",
|
68
|
-
"vite-plugin-lib-inject-css": "^2.0.1"
|
69
|
-
}
|
70
|
-
}
|
1
|
+
{
|
2
|
+
"name": "developer-icons",
|
3
|
+
"description": "Ready-to-use high-quality customizable tech icons - made for the developers",
|
4
|
+
"version": "4.3.0",
|
5
|
+
"type": "module",
|
6
|
+
"homepage": "https://xandemon.github.io/developer-icons",
|
7
|
+
"repository": {
|
8
|
+
"type": "git",
|
9
|
+
"url": "https://github.com/xandemon/developer-icons",
|
10
|
+
"directory": ""
|
11
|
+
},
|
12
|
+
"author": "xandemon",
|
13
|
+
"license": "MIT",
|
14
|
+
"keywords": [
|
15
|
+
"developer icons",
|
16
|
+
"tech stack icons",
|
17
|
+
"programming icons",
|
18
|
+
"coding icons",
|
19
|
+
"colorful tech icons",
|
20
|
+
"tech icons",
|
21
|
+
"programming language icons",
|
22
|
+
"icons",
|
23
|
+
"vector icons",
|
24
|
+
"svg",
|
25
|
+
"react icons"
|
26
|
+
],
|
27
|
+
"main": "dist/main.js",
|
28
|
+
"types": "dist/main.d.ts",
|
29
|
+
"files": [
|
30
|
+
"dist"
|
31
|
+
],
|
32
|
+
"scripts": {
|
33
|
+
"dev:playground": "vite",
|
34
|
+
"dev:docs": "cd docs && npm run dev",
|
35
|
+
"clean": "rimraf --glob dist && rimraf --glob lib/icons/*.tsx",
|
36
|
+
"build": "npm run clean && tsx ./lib/scripts/build.ts && tsc --p ./tsconfig-build.json && vite build",
|
37
|
+
"build:docs": "cd docs && npm run build",
|
38
|
+
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
39
|
+
"preview": "vite preview",
|
40
|
+
"preview:docs": "cd docs && npm run preview",
|
41
|
+
"prePublishOnly": "npm run build",
|
42
|
+
"sort:data": "tsx ./lib/scripts/sortData.ts",
|
43
|
+
"optimize-svgs": "svgo -f ./icons/raw -o ./icons && rimraf --glob icons/raw/*"
|
44
|
+
},
|
45
|
+
"peerDependencies": {
|
46
|
+
"react": "^18.2.0",
|
47
|
+
"react-dom": "^18.2.0"
|
48
|
+
},
|
49
|
+
"devDependencies": {
|
50
|
+
"@types/node": "^20.12.7",
|
51
|
+
"@types/react": "^18.2.66",
|
52
|
+
"@types/react-dom": "^18.2.22",
|
53
|
+
"@typescript-eslint/eslint-plugin": "^7.2.0",
|
54
|
+
"@typescript-eslint/parser": "^7.2.0",
|
55
|
+
"@vitejs/plugin-react": "^4.2.1",
|
56
|
+
"eslint": "^8.57.0",
|
57
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
58
|
+
"eslint-plugin-react-refresh": "^0.4.6",
|
59
|
+
"react": "^18.2.0",
|
60
|
+
"react-dom": "^18.2.0",
|
61
|
+
"rimraf": "^5.0.5",
|
62
|
+
"svgo": "^3.2.0",
|
63
|
+
"svgson": "^5.3.1",
|
64
|
+
"tsx": "^4.8.2",
|
65
|
+
"typescript": "^5.2.2",
|
66
|
+
"vite": "^5.2.0",
|
67
|
+
"vite-plugin-dts": "^3.9.0",
|
68
|
+
"vite-plugin-lib-inject-css": "^2.0.1"
|
69
|
+
}
|
70
|
+
}
|