plainviz-cli 0.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.
Files changed (3) hide show
  1. package/README.md +11 -0
  2. package/index.js +4 -0
  3. package/package.json +23 -0
package/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # PlainViz CLI
2
+
3
+ Command-line tool for PlainViz.
4
+
5
+ ```bash
6
+ # Coming soon...
7
+ cat data.csv | plainviz --type bar
8
+ plainviz input.pv -o chart.html
9
+ ```
10
+
11
+ Visit [plainviz.com](https://plainviz.com) for updates.
package/index.js ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+
3
+ // PlainViz CLI - Coming soon...
4
+ console.log('PlainViz CLI is under development. Visit https://plainviz.com for updates.');
package/package.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "name": "plainviz-cli",
3
+ "version": "0.0.1",
4
+ "description": "CLI tool for PlainViz - generate charts from plain text in your terminal",
5
+ "main": "index.js",
6
+ "bin": {
7
+ "plainviz": "./index.js"
8
+ },
9
+ "keywords": [
10
+ "cli",
11
+ "chart",
12
+ "visualization",
13
+ "plainviz",
14
+ "terminal"
15
+ ],
16
+ "author": "",
17
+ "license": "MIT",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "https://github.com/PlainViz/plainviz-cli"
21
+ },
22
+ "homepage": "https://plainviz.com"
23
+ }