Archived
1
0
Fork 0
This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
api-ts-gen/package.json

44 lines
921 B
JSON

{
"name": "@sup39/api-ts-gen",
"version": "2.1.4",
"description": "OpenAPI code generator for TypeScript",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"build": "tsc",
"lint": "eslint lib bin --ext ts --ext js"
},
"author": "sup39",
"license": "MIT",
"repository": {
"url": "https://github.com/sup39/api-ts-gen",
"type": "git"
},
"keywords": [
"openapi",
"swagger",
"typescript",
"codegen"
],
"files": [
"dist/*",
"bin/*"
],
"bin": {
"api-codegen": "bin/api-codegen.js"
},
"devDependencies": {
"@sup39/eslint-config-typescript": "^0.1.0",
"@types/js-yaml": "^4.0.5",
"@types/node": "^17.0.41",
"@types/qs": "^6.9.3",
"axios": "^0.27.2",
"eslint": "^8.17.0",
"typescript": "^4.7.3"
},
"dependencies": {
"js-yaml": "^4.1.0",
"qs": "^6.9.4"
}
}