@scalar/openapi-types 0.0.1 → 0.1.0
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 +6 -0
- package/README.md +4 -5
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +1 -0
- package/dist/openapi-types.d.ts +760 -0
- package/dist/openapi-types.d.ts.map +1 -0
- package/dist/openapi-types.js +37 -0
- package/package.json +18 -3
- package/src/index.ts +0 -1
- package/src/openapi-types.ts +0 -957
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
# Scalar OpenAPI Types
|
|
2
2
|
|
|
3
|
-
[](https://github.com/scalar/openapi-parser/blob/main/LICENSE)
|
|
3
|
+
[](https://github.com/scalar/scalar/actions/workflows/ci.yml)
|
|
4
|
+
[](https://github.com/scalar/scalar/graphs/contributors)
|
|
5
|
+
[](https://github.com/scalar/scalar/blob/main/LICENSE)
|
|
7
6
|
[](https://discord.gg/scalar)
|
|
8
7
|
|
|
9
|
-
Modern OpenAPI
|
|
8
|
+
Modern OpenAPI parser written in TypeScript, with support for Swagger 2.0, OpenAPI 3.0 and OpenAPI 3.1
|
|
10
9
|
|
|
11
10
|
## Installation
|
|
12
11
|
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAA"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { OpenAPIV2, OpenAPIV3 } from './openapi-types.js';
|