@solar-icons/react 1.0.0 → 1.0.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/LICENSE CHANGED
@@ -6,4 +6,6 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of
6
6
 
7
7
  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
8
 
9
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
9
+ The Software may include icons that are licensed under the Creative Commons Attribution 4.0 International License (CC BY 4.0). Commercial use is allowed, but attribution is required for the use of these icons. See LICENSE-THIRD-PARTY for more details.
10
+
11
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,14 @@
1
+ THIRD-PARTY LICENSES
2
+
3
+ This project includes icons that are licensed under the Creative Commons Attribution 4.0 International License (CC BY 4.0).
4
+
5
+ Attribution Requirement:
6
+ You are allowed to use these icons for commercial and non-commercial purposes, but you must give appropriate credit as required by the CC BY 4.0 license.
7
+
8
+ For more details, please visit: https://creativecommons.org/licenses/by/4.0/
9
+
10
+ List of Third-Party Elements:
11
+ - **Solar Icons Set** By [480 Design](https://www.figma.com/community/file/1166831539721848736)
12
+
13
+ Attribution Instructions:
14
+ When using the icons, please attribute the original authors in a visible way according to the terms of the CC BY 4.0 license.
package/README.md CHANGED
@@ -89,7 +89,7 @@ As an open-source project, contributions are welcome. However, please note that
89
89
 
90
90
  ## License
91
91
 
92
- The `@solar-icons/react` code and library are licensed under the [MIT License](./LICENSE). The Solar icon pack itself is licensed under **CC BY 4.0** by **480 Design**, requiring attribution for any use. For more information and to view the original icon set, visit [480 Design's Figma page](https://www.figma.com/community/file/1166831539721848736).
92
+ This libraries are licensed under the [MIT License](./LICENSE), making it free for both personal and commercial use. However, the Solar icon pack is licensed under **CC BY 4.0** by **480 Design**, which allows commercial use with attribution. Please visit [480 Design's Figma page](https://www.figma.com/community/file/1166831539721848736) to explore the original icon set or see the [LICENSE-THIRD-PARTY](./LICENSE-THIRD-PARTY) file.
93
93
 
94
94
  ## Acknowledgements
95
95
 
package/package.json CHANGED
@@ -1,16 +1,23 @@
1
1
  {
2
2
  "name": "@solar-icons/react",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
8
8
  "description": "Solar Icons for React",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://github.com/saoudi-h/solar-icons.git",
12
+ "directory": "packages/react"
13
+ },
9
14
  "type": "module",
10
15
  "sideEffects": false,
11
16
  "files": [
12
17
  "dist",
13
- "README.md"
18
+ "README.md",
19
+ "LICENSE",
20
+ "LICENSE-THIRD-PARTY"
14
21
  ],
15
22
  "module": "./dist/esm/index.mjs",
16
23
  "main": "./dist/cjs/index.cjs",
@@ -80,7 +87,7 @@
80
87
  "typescript": "^5.0.0",
81
88
  "vite": "^5.4.10",
82
89
  "vitest": "^2.1.3",
83
- "@solar-icons/core": "1.0.0",
90
+ "@solar-icons/core": "1.0.1",
84
91
  "@solar-icons/eslint": "1.0.0",
85
92
  "@solar-icons/prettier": "1.0.0",
86
93
  "@solar-icons/tsconfig": "1.0.0"
@@ -110,10 +117,11 @@
110
117
  },
111
118
  "license": "MIT",
112
119
  "bugs": {
113
- "url": "https://github.com/saoudi-h/solar/issues"
120
+ "url": "https://github.com/saoudi-h/solar-icons/issues"
114
121
  },
115
122
  "scripts": {
116
- "build": "vite build && tsc --build tsconfig.build.json",
123
+ "build": "pnpm copy:licenses && vite build && tsc --build tsconfig.build.json",
124
+ "copy:licenses": "cp ../../LICENSE ./LICENSE && cp ../../LICENSE-THIRD-PARTY ./LICENSE-THIRD-PARTY",
117
125
  "generate:assets": "tsx scripts/generate-assets.ts",
118
126
  "lint": "eslint . --max-warnings 0",
119
127
  "lint:fix": "eslint . --fix",