34 lines
707 B
JSON
34 lines
707 B
JSON
{
|
|
"name": "@g1/api-generator",
|
|
"version": "0.1.0",
|
|
"description": "API client generator for OpenAPI schemas",
|
|
"main": "dist/index.js",
|
|
"bin": {
|
|
"g1-api-generator": "./dist/cli.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"keywords": [
|
|
"openapi",
|
|
"api",
|
|
"generator",
|
|
"typescript"
|
|
],
|
|
"author": "Generation One",
|
|
"license": "UNLICENSED",
|
|
"private": true,
|
|
"dependencies": {
|
|
"axios": "^1.8.4",
|
|
"openapi-typescript-codegen": "^0.29.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20",
|
|
"typescript": "^5"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "https://git.generation.one/api/packages/GenerationOne/npm/"
|
|
}
|
|
}
|