deesse 0.0.2

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/bin/index.js +18 -0
  2. package/package.json +18 -0
package/bin/index.js ADDED
@@ -0,0 +1,18 @@
1
+ #!/usr/bin/env node
2
+ import { Command } from "commander";
3
+
4
+ const program = new Command();
5
+
6
+ program
7
+ .name("deesse")
8
+ .description("CLI for DeesseJS framework")
9
+ .version("0.0.1");
10
+
11
+ program
12
+ .command("add <name>")
13
+ .description("Add a new name")
14
+ .action((name) => {
15
+ console.log(name);
16
+ });
17
+
18
+ program.parse(process.argv);
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "deesse",
3
+ "version": "0.0.2",
4
+ "description": "Advanced CLI for DeesseJS framework",
5
+ "bin": {
6
+ "deesse": "bin/index.js"
7
+ },
8
+ "type": "module",
9
+ "files": [
10
+ "bin"
11
+ ],
12
+ "dependencies": {
13
+ "commander": "^12.1.0",
14
+ "execa": "^8.0.1",
15
+ "fs-extra": "^11.2.0",
16
+ "prompts": "^2.4.2"
17
+ }
18
+ }