embedlabs 0.1.0-alpha.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.
package/README.md ADDED
@@ -0,0 +1,10 @@
1
+ # embedlabs
2
+
3
+ Experimental npm alias for EmbedBoard CLI.
4
+
5
+ ```bash
6
+ npm install -g embedlabs@alpha
7
+ embedlabs --help
8
+ ```
9
+
10
+ This package forwards to `@kvell007/embed-labs-cli@0.1.0-alpha.2`.
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ import "@kvell007/embed-labs-cli/dist/index.js";
package/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "embedlabs",
3
+ "version": "0.1.0-alpha.0",
4
+ "description": "EmbedBoard CLI alias package for Embed Labs Cloud integration testing.",
5
+ "private": false,
6
+ "type": "module",
7
+ "bin": {
8
+ "embedlabs": "bin/embedlabs.js"
9
+ },
10
+ "files": [
11
+ "bin",
12
+ "README.md"
13
+ ],
14
+ "dependencies": {
15
+ "@kvell007/embed-labs-cli": "@kvell007/embed-labs-cli@0.1.0-alpha.2"
16
+ },
17
+ "publishConfig": {
18
+ "access": "public",
19
+ "registry": "https://registry.npmjs.org/"
20
+ }
21
+ }