@stdy/cli 0.4.2 → 0.4.4

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 +8 -2
  2. package/package.json +9 -9
package/README.md CHANGED
@@ -6,11 +6,17 @@ and generates responses from schemas or examples.
6
6
  ## Installation
7
7
 
8
8
  ```bash
9
- # npm (recommended)
9
+ # npm
10
10
  npm install -g @stdy/cli
11
11
 
12
- # Or with Deno
12
+ # npx (no install)
13
+ npx @stdy/cli api.yaml
14
+
15
+ # Deno
13
16
  deno install -gAn steady jsr:@steady/cli
17
+
18
+ # deno run (no install)
19
+ deno run -A jsr:@steady/cli api.yaml
14
20
  ```
15
21
 
16
22
  ## Usage
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "@stdy/cli",
3
- "version": "0.4.2",
3
+ "version": "0.4.4",
4
4
  "description": "OpenAPI 3 mock server. Validates SDKs against OpenAPI specs with clear error attribution.",
5
5
  "license": "Elastic-2.0",
6
6
  "repository": {
7
7
  "type": "git",
8
- "url": "git+https://github.com/stainless-api/steady.git"
8
+ "url": "git+https://github.com/dgellow/steady.git"
9
9
  },
10
10
  "bugs": {
11
- "url": "https://github.com/stainless-api/steady/issues"
11
+ "url": "https://github.com/dgellow/steady/issues"
12
12
  },
13
- "homepage": "https://github.com/stainless-api/steady#readme",
13
+ "homepage": "https://github.com/dgellow/steady#readme",
14
14
  "keywords": [
15
15
  "openapi",
16
16
  "mock-server",
@@ -29,10 +29,10 @@
29
29
  "node": ">=14.0.0"
30
30
  },
31
31
  "optionalDependencies": {
32
- "@stdy/cli-linux-x64": "0.4.2",
33
- "@stdy/cli-linux-arm64": "0.4.2",
34
- "@stdy/cli-darwin-x64": "0.4.2",
35
- "@stdy/cli-darwin-arm64": "0.4.2",
36
- "@stdy/cli-win32-x64": "0.4.2"
32
+ "@stdy/cli-linux-x64": "0.4.4",
33
+ "@stdy/cli-linux-arm64": "0.4.4",
34
+ "@stdy/cli-darwin-x64": "0.4.4",
35
+ "@stdy/cli-darwin-arm64": "0.4.4",
36
+ "@stdy/cli-win32-x64": "0.4.4"
37
37
  }
38
38
  }