Skip to content

Commit

Permalink
The unscoped NPM package is now just a wrapper around the scoped @API…
Browse files Browse the repository at this point in the history
…DevTools package
  • Loading branch information
JamesMessinger committed Mar 10, 2020
1 parent a6ffd98 commit 60dc57e
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 0 deletions.
3 changes: 3 additions & 0 deletions dist/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import openapi from "@apidevtools/openapi-schemas";
export * from "@apidevtools/openapi-schemas";
export default openapi;
2 changes: 2 additions & 0 deletions dist/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
"use strict";
module.exports = require("@apidevtools/openapi-schemas");
39 changes: 39 additions & 0 deletions dist/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"name": "openapi-schemas",
"version": "X.X.X",
"description": "JSON Schemas for every version of the OpenAPI Specification",
"keywords": [
"openapi",
"open-api",
"swagger",
"oas",
"api",
"rest",
"json",
"specification",
"definition",
"schema"
],
"author": {
"name": "James Messinger",
"url": "https://jamesmessinger.com"
},
"license": "MIT",
"homepage": "https://apitools.dev/openapi-schemas",
"repository": {
"type": "git",
"url": "https://github.com/APIDevTools/openapi-schemas.git"
},
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts"
],
"engines": {
"node": ">=10"
},
"dependencies": {
"@apidevtools/openapi-schemas": "X.X.X"
}
}

0 comments on commit 60dc57e

Please sign in to comment.