contractspec 1.42.10 → 1.43.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,32 @@
1
1
  # contractspec
2
2
 
3
+ ## 1.43.2
4
+
5
+ ### Patch Changes
6
+
7
+ - e147271: fix: improve stability
8
+ - Updated dependencies [e147271]
9
+ - @lssm/app.cli-contractspec@1.43.2
10
+
11
+ ## 1.43.1
12
+
13
+ ### Patch Changes
14
+
15
+ - f28fdad: fix
16
+ - Updated dependencies [f28fdad]
17
+ - @lssm/app.cli-contractspec@1.43.1
18
+
19
+ ## 1.43.0
20
+
21
+ ### Minor Changes
22
+
23
+ - 042d072: feat: schema declaration using json schema, including zod
24
+
25
+ ### Patch Changes
26
+
27
+ - Updated dependencies [042d072]
28
+ - @lssm/app.cli-contractspec@1.43.0
29
+
3
30
  ## 1.42.10
4
31
 
5
32
  ### Patch Changes
package/QUICK_START.md CHANGED
@@ -6,8 +6,8 @@ Get started with contracts-cli in 5 minutes.
6
6
 
7
7
  ```bash
8
8
  cd packages/lssm/tools/contracts-cli
9
- pnpm install
10
- pnpm build
9
+ bun install
10
+ bun build
11
11
  ```
12
12
 
13
13
  ## First Spec
@@ -15,7 +15,7 @@ pnpm build
15
15
  ### 1. Create a spec interactively
16
16
 
17
17
  ```bash
18
- pnpm exec contractspec create
18
+ contractspec create
19
19
  ```
20
20
 
21
21
  Follow the prompts:
@@ -32,7 +32,7 @@ This creates: `src/interactions/commands/user-signup.contracts.ts`
32
32
 
33
33
  ```bash
34
34
  export ANTHROPIC_API_KEY=your-key-here
35
- pnpm exec contractspec create --ai
35
+ bun exec contractspec create --ai
36
36
  ```
37
37
 
38
38
  Describe what you want:
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "contractspec",
3
- "version": "1.42.10",
3
+ "version": "1.43.2",
4
4
  "description": "CLI tool for creating, building, and validating contract specifications",
5
5
  "bin": {
6
6
  "contractspec": "./bin/contractspec.mjs"
7
7
  },
8
8
  "dependencies": {
9
- "@lssm/app.cli-contractspec": "1.42.10"
9
+ "@lssm/app.cli-contractspec": "1.43.2"
10
10
  },
11
11
  "scripts": {
12
12
  "publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
@@ -25,6 +25,7 @@
25
25
  "registry": "https://registry.npmjs.org/"
26
26
  },
27
27
  "license": "MIT",
28
+ "homepage": "https://contractspec.io",
28
29
  "repository": {
29
30
  "type": "git",
30
31
  "url": "https://github.com/lssm-tech/contractspec.git",