edsger 0.1.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 +26 -0
  2. package/index.js +3 -0
  3. package/package.json +22 -0
package/README.md ADDED
@@ -0,0 +1,26 @@
1
+ # Edsger CLI
2
+
3
+ A command-line interface tool for Edsger.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install edsger
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```bash
14
+ edsger [command] [options]
15
+ ```
16
+
17
+ ## Development
18
+
19
+ ```bash
20
+ npm install
21
+ npm run dev
22
+ ```
23
+
24
+ ## License
25
+
26
+ ISC
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+
3
+ console.log('hello edsger');
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "edsger",
3
+ "version": "0.1.0",
4
+ "main": "index.js",
5
+ "bin": {
6
+ "edsger": "./index.js"
7
+ },
8
+ "scripts": {
9
+ "test": "echo \"Error: no test specified\" && exit 1"
10
+ },
11
+ "keywords": ["cli", "edsger"],
12
+ "author": "",
13
+ "license": "ISC",
14
+ "description": "Edsger CLI tool",
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "https://github.com/yourusername/edsger.git"
18
+ },
19
+ "engines": {
20
+ "node": ">=14.0.0"
21
+ }
22
+ }