betterprompt 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/.gitattributes ADDED
@@ -0,0 +1,2 @@
1
+ # Auto detect text files and perform LF normalization
2
+ * text=auto
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # BetterPrompt
2
+
3
+ Coming soon
package/index.js ADDED
@@ -0,0 +1,4 @@
1
+ // index.js
2
+ module.exports = function() {
3
+ console.warn("This package is currently a work in progress and does not contain active code yet.");
4
+ };
package/package.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "betterprompt",
3
+ "version": "0.0.1",
4
+ "description": "BetterPrompt CLI Tools.",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "author": "BetterPrompt"
10
+ }