nowk 0.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 +3 -0
  2. package/bin/cli.js +7 -0
  3. package/package.json +21 -0
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # Nowkit
2
+
3
+ This project is a wrapper for @nowkit/cli, which allows you to run the tool simply by executing `npx nowk`.
package/bin/cli.js ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env node
2
+
3
+ console.log(`
4
+ 🚀 nowkit - Comming soon
5
+
6
+ https://nowk.it
7
+ `);
package/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "nowk",
3
+ "version": "0.0.0",
4
+ "description": "The official CLI for nowk.it.",
5
+ "main": "bin/cli.js",
6
+ "bin": {
7
+ "nowk": "./bin/cli.js"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://github.com/zaldih/nowkit"
12
+ },
13
+ "homepage": "https://nowk.it",
14
+ "keywords": [
15
+ "cli",
16
+ "nowkit",
17
+ "tools"
18
+ ],
19
+ "author": "Zaldih",
20
+ "license": "unlicensed"
21
+ }