worklayer 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.
package/README.md ADDED
@@ -0,0 +1,21 @@
1
+ # worklayer
2
+
3
+ Minimal CLI package that prints a status message.
4
+
5
+ ## Usage
6
+
7
+ ```bash
8
+ npx worklayer
9
+ ```
10
+
11
+ or, after installing globally:
12
+
13
+ ```bash
14
+ worklayer
15
+ ```
16
+
17
+ ## Publishing
18
+
19
+ 1. Log in to npm: `npm login`
20
+ 2. Publish the package: `npm publish`
21
+
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+
3
+ console.log("Worklayer is under development, check back in a week");
package/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "worklayer",
3
+ "version": "0.0.1",
4
+ "description": "A minimal CLI that prints a work-in-progress message.",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "bin": {
8
+ "worklayer": "bin/worklayer.js"
9
+ },
10
+ "files": [
11
+ "bin",
12
+ "README.md"
13
+ ],
14
+ "scripts": {
15
+ "start": "node ./bin/worklayer.js",
16
+ "test": "node ./bin/worklayer.js"
17
+ },
18
+ "engines": {
19
+ "node": ">=18"
20
+ }
21
+ }