-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates `package.json` with more package metadata. Changes emit location to simplify consumption. Extends the README documentation. Includes an empty `index.js`.
- Loading branch information
Showing
6 changed files
with
69 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
dist/ | ||
node_modules/ | ||
node_modules/ | ||
swapi.openapi.yaml |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
// Not a JS module | ||
export {}; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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,8 +1,34 @@ | ||
{ | ||
"name": "swapi-typespec", | ||
"version": "1.0.0-alpha.0", | ||
"description": "TypeSpec representation of SWAPI: The Star Wars API.", | ||
"version": "1.0.0-prerelease", | ||
"keywords": [ | ||
"api", | ||
"openapi", | ||
"openapi3", | ||
"star wars", | ||
"swagger", | ||
"swapi", | ||
"typespec" | ||
], | ||
"homepage": "https://github.com/connorjs/swapi-typespec#readme", | ||
"bugs": { | ||
"url": "https://github.com/connorjs/swapi-typespec/issues" | ||
}, | ||
"license": "MIT", | ||
"author": { | ||
"name": "Connor Sullivan", | ||
"email": "[email protected]", | ||
"url": "https://github.com/connorjs" | ||
}, | ||
"type": "module", | ||
"files": [ | ||
"index.js", | ||
"swapi.openapi.yaml" | ||
], | ||
"exports": { | ||
".": "./index.js" | ||
}, | ||
"scripts": { | ||
"build": "tsp compile src", | ||
"format": "prettier -l '**/*.{json,md,tsp,yaml,yml}'", | ||
|
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