-
-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #118 from hey-api/docs/rename
docs(README): update name references
- Loading branch information
Showing
5 changed files
with
32 additions
and
37 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
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,23 +1,24 @@ | ||
{ | ||
"name": "@nicolas-chaulet/openapi-typescript-codegen", | ||
"name": "@hey-api/openapi-ts", | ||
"version": "0.27.36", | ||
"type": "module", | ||
"description": "Library that generates Typescript clients based on the OpenAPI specification.", | ||
"author": "Ferdi Koomen", | ||
"homepage": "https://github.com/nicolas-chaulet/openapi-typescript-codegen/", | ||
"description": "Turn your OpenAPI specification into a beautiful TypeScript client", | ||
"homepage": "https://github.com/hey-api/openapi-ts/", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/nicolas-chaulet/openapi-typescript-codegen.git" | ||
"url": "git+https://github.com/hey-api/openapi-ts.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/nicolas-chaulet/openapi-typescript-codegen/issues" | ||
"url": "https://github.com/hey-api/openapi-ts/issues" | ||
}, | ||
"license": "MIT", | ||
"keywords": [ | ||
"openapi", | ||
"swagger", | ||
"generator", | ||
"typescript", | ||
"javascript", | ||
"codegen", | ||
"yaml", | ||
"json", | ||
"fetch", | ||
|
@@ -26,12 +27,6 @@ | |
"angular", | ||
"node" | ||
], | ||
"maintainers": [ | ||
{ | ||
"name": "Ferdi Koomen", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"main": "./dist/node/index.js", | ||
"types": "./dist/node/index.d.ts", | ||
"bin": { | ||
|
@@ -42,23 +37,23 @@ | |
"dist" | ||
], | ||
"scripts": { | ||
"dev": "rimraf dist && npm run build-bundle -- --watch", | ||
"build": "run-s clean build-bundle build-types", | ||
"build-bundle": "rollup --config rollup.config.ts --configPlugin typescript", | ||
"build-types": "run-s build-types-temp build-types-roll build-types-check", | ||
"build-types-check": "tsc --project tsconfig.check.json", | ||
"build-types-roll": "rollup --config rollup.dts.config.ts --configPlugin typescript && rimraf temp", | ||
"build-types-temp": "tsc --emitDeclarationOnly --outDir temp -p src/node", | ||
"build-types": "run-s build-types-temp build-types-roll build-types-check", | ||
"build": "run-s clean build-bundle build-types", | ||
"clean": "rimraf dist test/generated test/e2e/generated coverage node_modules/.cache", | ||
"dev": "rimraf dist && npm run build-bundle -- --watch", | ||
"lint:fix": "eslint . --fix", | ||
"lint": "eslint .", | ||
"prepublishOnly": "npm run build", | ||
"test": "vitest run --config vitest.config.unit.ts", | ||
"test:coverage": "vitest run --config vitest.config.unit.ts --coverage", | ||
"test:e2e": "vitest run --config vitest.config.e2e.ts", | ||
"test:sample": "node test/sample.cjs", | ||
"test:update": "vitest run --config vitest.config.unit.ts --update", | ||
"test:watch": "vitest --config vitest.config.unit.ts --watch", | ||
"test": "vitest run --config vitest.config.unit.ts", | ||
"typecheck": "tsc --noEmit" | ||
}, | ||
"engines": { | ||
|
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