lemmafit 0.2.1 → 0.2.2

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 (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +4 -2
package/README.md CHANGED
@@ -96,5 +96,6 @@ npm update lemmafit
96
96
 
97
97
  - Node.js 18+
98
98
  - [Claude Code](https://docs.anthropic.com/en/docs/claude-code) CLI
99
+ - [claimcheck](https://github.com/metareflection/claimcheck) (`npm install -g claimcheck`) — needed for the `/guarantees` skill
99
100
 
100
101
  Dafny and dafny2js are downloaded automatically during `npm install` to `~/.lemmafit/`.
package/package.json CHANGED
@@ -15,7 +15,7 @@
15
15
  "verified",
16
16
  "proof"
17
17
  ],
18
- "version": "0.2.1",
18
+ "version": "0.2.2",
19
19
  "type": "commonjs",
20
20
  "files": [
21
21
  "cli/",
@@ -39,10 +39,12 @@
39
39
  "postinstall": "node ./cli/sync.js && node ./cli/download-dafny2js.js && node ./lib/download-dafny.js"
40
40
  },
41
41
  "dependencies": {
42
- "claimcheck": "^0.2.0",
43
42
  "js-yaml": "^4.1.1",
44
43
  "ws": "^8.18.0"
45
44
  },
45
+ "peerDependencies": {
46
+ "claimcheck": "^0.2.0"
47
+ },
46
48
  "engines": {
47
49
  "node": ">=18.0.0"
48
50
  },