@coreviz/cli 1.0.0
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 +27 -0
- package/bin/cli.js +18 -0
- package/package.json +27 -0
package/README.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# @coreviz/cli
|
|
2
|
+
|
|
3
|
+
CoreViz CLI tool - A command-line interface for CoreViz.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g @coreviz/cli
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
# Run directly with npx
|
|
15
|
+
npx @coreviz/cli
|
|
16
|
+
|
|
17
|
+
# Or if installed globally
|
|
18
|
+
coreviz
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Development
|
|
22
|
+
|
|
23
|
+
This is currently a placeholder CLI tool. The actual functionality will be implemented soon.
|
|
24
|
+
|
|
25
|
+
## License
|
|
26
|
+
|
|
27
|
+
MIT
|
package/bin/cli.js
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* CoreViz CLI
|
|
5
|
+
*
|
|
6
|
+
* This is a placeholder CLI tool for the @coreviz/cli package.
|
|
7
|
+
* It can be executed via: npx @coreviz/cli
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
console.log('🚀 CoreViz CLI - Coming Soon!');
|
|
11
|
+
console.log('');
|
|
12
|
+
console.log('This is a placeholder for the CoreViz CLI tool.');
|
|
13
|
+
console.log('The actual CLI functionality will be implemented soon.');
|
|
14
|
+
console.log('');
|
|
15
|
+
console.log('For more information, visit: https://github.com/CoreViz/cli');
|
|
16
|
+
|
|
17
|
+
// Exit with success code
|
|
18
|
+
process.exit(0);
|
package/package.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@coreviz/cli",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "CoreViz CLI tool",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"coreviz": "./bin/cli.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
11
|
+
},
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "git+https://github.com/CoreViz/cli.git"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"cli",
|
|
18
|
+
"coreviz",
|
|
19
|
+
"command-line"
|
|
20
|
+
],
|
|
21
|
+
"author": "CoreViz Team",
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"bugs": {
|
|
24
|
+
"url": "https://github.com/CoreViz/cli/issues"
|
|
25
|
+
},
|
|
26
|
+
"homepage": "https://github.com/CoreViz/cli#readme"
|
|
27
|
+
}
|