lemmafit 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 +9 -0
  2. package/index.js +5 -0
  3. package/package.json +9 -0
package/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # lemmafit
2
+
3
+ Formal verification for web apps.
4
+
5
+ This package is under active development and not yet functional. We will be releasing soon.
6
+
7
+ You can stay up to date at midspiral.com
8
+
9
+ See the basis for the product on [GitHub](https://github.com/metareflection/dafny-replay).
package/index.js ADDED
@@ -0,0 +1,5 @@
1
+ // index.js
2
+ module.exports = () => {
3
+ throw new Error("This package is just a stub placeholder. Lemmafit is coming soon.");
4
+ };
5
+
package/package.json ADDED
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "lemmafit",
3
+ "version": "0.0.1",
4
+ "description": "Formal verification for web apps. Work in progress.",
5
+ "license": "MIT",
6
+ "main": "index.js",
7
+ "keywords": ["formal-verification", "dafny", "vibe-coding", "AI"],
8
+ "files": ["index.js"]
9
+ }