freesail 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 +7 -0
  2. package/index.js +3 -0
  3. package/package.json +7 -0
package/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # Freesail
2
+
3
+ The official Freesail protocol implementation.
4
+
5
+ ## Status
6
+ This project is currently under active development by Thendral AI.
7
+ Please follow updates at [thendral.ai](https://thendral.ai).
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ // index.js
2
+ console.log("Freesail is currently in Alpha. Please check back later.");
3
+ module.exports = {};
package/package.json ADDED
@@ -0,0 +1,7 @@
1
+ {
2
+ "name": "freesail",
3
+ "version": "0.0.1",
4
+ "description": "The official Freesail SDK. Currently in alpha - full release coming soon.",
5
+ "main": "index.js",
6
+ "author": "Thendral AI Ltd"
7
+ }