drej 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.
Files changed (3) hide show
  1. package/README.md +36 -0
  2. package/bin/index.js +3 -0
  3. package/package.json +15 -0
package/README.md ADDED
@@ -0,0 +1,36 @@
1
+ # drej
2
+
3
+ A simple command-line tool that logs "hello".
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install -g drej
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ After installation, you can use the CLI by running:
14
+
15
+ ```bash
16
+ drej
17
+ ```
18
+
19
+ This will output: "hello"mand-line tool that logs "hello".
20
+
21
+ ## Installation
22
+
23
+ ```bash
24
+ pnpm install
25
+ pnpm link --global
26
+ ```
27
+
28
+ ## Usage
29
+
30
+ After installation, you can use the CLI by running:
31
+
32
+ ```bash
33
+ hello
34
+ ```
35
+
36
+ This will output: "hello"
package/bin/index.js ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+
3
+ console.log('hello');
package/package.json ADDED
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "drej",
3
+ "version": "1.0.0",
4
+ "description": "A simple CLI that logs hello",
5
+ "type": "module",
6
+ "bin": {
7
+ "drej": "./bin/index.js"
8
+ },
9
+ "scripts": {
10
+ "start": "node bin/index.js"
11
+ },
12
+ "keywords": ["cli"],
13
+ "author": "",
14
+ "license": "MIT"
15
+ }