@typespec/http 0.61.0 → 0.62.0-dev.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 (2) hide show
  1. package/README.md +3 -5
  2. package/package.json +12 -11
package/README.md CHANGED
@@ -8,9 +8,7 @@ TypeSpec HTTP protocol binding
8
8
  npm install @typespec/http
9
9
  ```
10
10
 
11
- ## Linter
12
-
13
- ### Usage
11
+ ## Usage
14
12
 
15
13
  Add the following in `tspconfig.yaml`:
16
14
 
@@ -20,13 +18,13 @@ linter:
20
18
  - "@typespec/http/all"
21
19
  ```
22
20
 
23
- ### RuleSets
21
+ ## RuleSets
24
22
 
25
23
  Available ruleSets:
26
24
 
27
25
  - `@typespec/http/all`
28
26
 
29
- ### Rules
27
+ ## Rules
30
28
 
31
29
  | Name | Description |
32
30
  | --------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typespec/http",
3
- "version": "0.61.0",
3
+ "version": "0.62.0-dev.1",
4
4
  "author": "Microsoft Corporation",
5
5
  "description": "TypeSpec HTTP protocol binding",
6
6
  "homepage": "https://github.com/microsoft/typespec",
@@ -44,8 +44,8 @@
44
44
  "!dist/test/**"
45
45
  ],
46
46
  "peerDependencies": {
47
- "@typespec/compiler": "~0.61.0",
48
- "@typespec/streams": "~0.61.0"
47
+ "@typespec/compiler": "~0.61.0 || >=0.62.0-dev <0.62.0",
48
+ "@typespec/streams": "~0.61.0 || >=0.62.0-dev <0.62.0"
49
49
  },
50
50
  "peerDependenciesMeta": {
51
51
  "@typespec/streams": {
@@ -53,18 +53,19 @@
53
53
  }
54
54
  },
55
55
  "devDependencies": {
56
- "@types/node": "~22.7.1",
57
- "@vitest/coverage-v8": "^2.1.1",
58
- "@vitest/ui": "^2.1.1",
56
+ "@types/node": "~22.7.5",
57
+ "@typespec/compiler": "~0.61.0 || >=0.62.0-dev <0.62.0",
58
+ "@typespec/library-linter": "~0.61.0 || >=0.62.0-dev <0.62.0",
59
+ "@typespec/streams": "~0.61.0 || >=0.62.0-dev <0.62.0",
60
+ "@vitest/coverage-v8": "^2.1.2",
61
+ "@vitest/ui": "^2.1.2",
59
62
  "c8": "^10.1.2",
60
63
  "rimraf": "~6.0.1",
61
- "typescript": "~5.6.2",
62
- "vitest": "^2.1.1",
63
- "@typespec/compiler": "~0.61.0",
64
- "@typespec/streams": "~0.61.0",
65
- "@typespec/library-linter": "~0.61.0",
64
+ "typescript": "~5.6.3",
65
+ "vitest": "^2.1.2",
66
66
  "@typespec/tspd": "~0.46.0"
67
67
  },
68
+ "dependencies": {},
68
69
  "scripts": {
69
70
  "clean": "rimraf ./dist ./temp",
70
71
  "build": "npm run gen-extern-signature && tsc -p . && npm run lint-typespec-library",