bucketfs 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.
Files changed (3) hide show
  1. package/README.md +17 -0
  2. package/dist/index.js +9 -0
  3. package/package.json +16 -0
package/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # tpipe
2
+
3
+ A quick distribution of the Training Pipes CLI.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install tpipe
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ Coming soon.
14
+
15
+ ## License
16
+
17
+ UNLICENSED
package/dist/index.js ADDED
@@ -0,0 +1,9 @@
1
+ // Training Pipes CLI - Shell placeholder
2
+ // This is a placeholder file for the npm package distribution
3
+
4
+ module.exports = {
5
+ version: "0.0.1",
6
+ init: function() {
7
+ console.log("Training Pipes CLI - Coming soon");
8
+ }
9
+ };
package/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "bucketfs",
3
+ "version": "0.0.1",
4
+ "description": "A quick distribution of the Training Pipes CLI",
5
+ "main": "dist/index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "keywords": [
10
+ "Training",
11
+ "Pipes",
12
+ "AI"
13
+ ],
14
+ "author": "Training Pipes",
15
+ "license": "UNLICENSED"
16
+ }