simple-ascii-chart-cli 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/README.md +4 -4
- package/package.json +6 -5
package/README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# Simple ascii chart
|
|
2
2
|
|
|
3
|
-

|
|
4
|
-

|
|
5
|
-

|
|
6
|
-

|
|
3
|
+

|
|
4
|
+

|
|
5
|
+

|
|
6
|
+

|
|
7
7
|
|
|
8
8
|
**Simple ASCII Chart** is a TypeScript package that allows you to create ASCII charts in your terminal. It operates on two-dimensional input data, supports multiple series, custom colors, and formatters to make your data visualization clear and customizable.
|
|
9
9
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "simple-ascii-chart-cli",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Simple ascii chart generator",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Simple ascii chart generator CLI",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"bin": {
|
|
@@ -47,18 +47,19 @@
|
|
|
47
47
|
"ascii",
|
|
48
48
|
"js",
|
|
49
49
|
"ts",
|
|
50
|
+
"cli",
|
|
50
51
|
"chart"
|
|
51
52
|
],
|
|
52
53
|
"author": "gtktsc",
|
|
53
54
|
"license": "MIT",
|
|
54
55
|
"repository": {
|
|
55
56
|
"type": "git",
|
|
56
|
-
"url": "git+https://github.com/gtktsc/ascii-chart.git"
|
|
57
|
+
"url": "git+https://github.com/gtktsc/simple-ascii-chart-cli.git"
|
|
57
58
|
},
|
|
58
59
|
"bugs": {
|
|
59
|
-
"url": "https://github.com/gtktsc/ascii-chart/issues"
|
|
60
|
+
"url": "https://github.com/gtktsc/simple-ascii-chart-cli/issues"
|
|
60
61
|
},
|
|
61
|
-
"homepage": "https://github.com/gtktsc/ascii-chart#readme",
|
|
62
|
+
"homepage": "https://github.com/gtktsc/simple-ascii-chart-cli#readme",
|
|
62
63
|
"files": [
|
|
63
64
|
"dist/**/*"
|
|
64
65
|
],
|