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
supmiku39 87615616d6 fix Partial constructor, enhance error msg
add more info to BadValueError
  special message on undefined and null
  trace the location where the error is thrown
add int32 STP
fix STP null argument bug
2020-04-08 20:17:57 +09:00

30 lines
735 B
JSON

{
"name": "api-codegen-ts",
"version": "1.1.0",
"description": "OpenAPI code generator for TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"build": "tsc",
"lint": "eslint lib bin --ext ts --ext js"
},
"author": "supmiku39",
"license": "MIT",
"bin": {
"api-codegen": "bin/api-codegen.js"
},
"devDependencies": {
"@types/js-yaml": "^3.12.3",
"@types/node": "^13.11.0",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"axios": "^0.19.2",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"typescript": "^3.8.3"
},
"dependencies": {
"js-yaml": "^3.13.1"
}
}