chartformers 1.0.36 → 1.0.37

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/LICENSE +20 -0
  2. package/package.json +15 -4
package/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Chartformers Non-Commercial License
2
+
3
+ Copyright (c) [2025] [Petrando Richard]
4
+
5
+ This software is free for non-commercial use only.
6
+
7
+ Non-commercial use includes:
8
+ - Personal projects
9
+ - Educational purposes
10
+ - Hobby/development/testing
11
+ - Non-profit organizations
12
+ - Open-source projects (without monetization)
13
+
14
+ Commercial use (including in profit-generating applications, SaaS, internal business tools, or any revenue-derived products) requires a paid commercial license.
15
+
16
+ To obtain a commercial license, contact petrandorichard@gmail.com or visit [your licensing page URL].
17
+
18
+ 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.
19
+
20
+ For full terms and commercial licensing options, see [link to your site/docs].
package/package.json CHANGED
@@ -1,14 +1,26 @@
1
1
  {
2
2
  "name": "chartformers",
3
- "version": "1.0.36",
4
- "description": "",
5
- "author": "Petrando Richard",
3
+ "license": "SEE LICENSE IN LICENSE",
4
+ "version": "1.0.37",
5
+ "description": "Animated React charting library powered by D3 with smooth data transitions and interactive features",
6
+ "author": {
7
+ "name": "Petrando Richard",
8
+ "email": "petrandorichard@gmail.com"
9
+ },
6
10
  "main": "dist/chartformers.umd.js",
7
11
  "module": "dist/chartformers.es.js",
8
12
  "types": "dist/index.d.ts",
9
13
  "files": [
10
14
  "dist"
11
15
  ],
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "git+https://github.com/petrando/chartformers.git"
19
+ },
20
+ "homepage": "https://chartformers-docs.vercel.app/",
21
+ "bugs": {
22
+ "url": "https://github.com/petrando/chartformers/issues"
23
+ },
12
24
  "keywords": [
13
25
  "react",
14
26
  "react-chart",
@@ -35,7 +47,6 @@
35
47
  "sortable-pie",
36
48
  "animated-pie-chart"
37
49
  ],
38
- "license": "ISC",
39
50
  "type": "module",
40
51
  "engines": {
41
52
  "node": ">=18.0.0"