-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
separate packages, clean up deps (remove babel/core)
- Loading branch information
1 parent
68c127a
commit 1c91627
Showing
17 changed files
with
20 additions
and
1,361 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
"version": "0.5.0", | ||
"description": "Convert JSON Schema to TypeScript Definitions", | ||
"author": "Dan Lynch <[email protected]>", | ||
"homepage": "https://github.com/pyramation/schema-typescript#readme", | ||
"homepage": "https://github.com/cosmology-tech/schema-typescript#readme", | ||
"license": "SEE LICENSE IN LICENSE", | ||
"main": "index.js", | ||
"module": "esm/index.js", | ||
|
@@ -14,10 +14,10 @@ | |
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/pyramation/schema-typescript" | ||
"url": "https://github.com/cosmology-tech/schema-typescript" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/pyramation/schema-typescript/issues" | ||
"url": "https://github.com/cosmology-tech/schema-typescript/issues" | ||
}, | ||
"scripts": { | ||
"copy": "copyfiles -f ../../LICENSE README.md package.json dist", | ||
|
@@ -28,11 +28,9 @@ | |
"test:watch": "jest --watch" | ||
}, | ||
"dependencies": { | ||
"@babel/core": "^7.24.4", | ||
"@babel/generator": "^7.24.4", | ||
"@babel/types": "^7.24.0", | ||
"deepmerge": "^4.3.1", | ||
"minimatch": "^9.0.4" | ||
"schema-typescript": "^0.5.0" | ||
}, | ||
"keywords": ["jsonschema", "schema", "typescript"] | ||
"keywords": ["jsonschema", "schema", "typescript", "swagger", "openapi"] | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
export * from './context'; | ||
export * from './schema'; | ||
export * from './types'; | ||
export * from './openapi'; | ||
export * from './openapi.types'; | ||
export * from './utils'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.