cdk-openapi-to-http-api
Version:
CDK Construct that lets you build AWS Api Gateway Http Api, backed by Lambdas, based on a OpenAPI spec file.
64 lines • 1.67 kB
JSON
{
"name": "cdk-openapi-to-http-api",
"version": "1.3.13",
"description": "CDK Construct that lets you build AWS Api Gateway Http Api, backed by Lambdas, based on a OpenAPI spec file.",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"upload": "npm i && npm run build && npm publish --scope=user",
"cdk": "cdk",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/lucafolloni/cdk-http-openapi.git"
},
"author": {
"name": "Luca Folloni"
},
"license": "MIT",
"keywords": [
"cdk",
"openapi",
"lambda",
"API",
"Api Gateway",
"http",
"constructs",
"reusable cdk constructs"
],
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"yaml": "^2.1.3"
},
"bundledDependencies": [
"yaml"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@types/node": "^20.0.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"@aws-cdk/aws-apigatewayv2-alpha": "2.44.0-alpha.0",
"aws-cdk-lib": "2.198.0",
"constructs": "10.4.2",
"prettier": "^2.6.0",
"standard-version": "^9.3.2",
"typescript": "^5.8.3"
},
"peerDependencies": {
"@aws-cdk/aws-apigatewayv2-alpha": "^2.44.0-alpha.0",
"aws-cdk-lib": "^2.44.0",
"constructs": "^10.1.122"
}
}