2025-12-22 20:05:37 +01:00

127 lines
4.3 KiB
JSON

{
"name": "openapi-typescript-codegen",
"version": "0.30.0",
"description": "Library that generates Typescript clients based on the OpenAPI specification.",
"author": "Ferdi Koomen",
"homepage": "https://github.com/ferdikoomen/openapi-typescript-codegen",
"repository": {
"type": "git",
"url": "git+https://github.com/ferdikoomen/openapi-typescript-codegen.git"
},
"bugs": {
"url": "https://github.com/ferdikoomen/openapi-typescript-codegen/issues"
},
"license": "MIT",
"keywords": [
"openapi",
"swagger",
"generator",
"typescript",
"yaml",
"json",
"fetch",
"xhr",
"axios",
"angular",
"node"
],
"maintainers": [
{
"name": "Ferdi Koomen",
"email": "info@madebyferdi.com"
}
],
"main": "dist/index.js",
"types": "types/index.d.ts",
"bin": {
"openapi": "bin/index.js"
},
"files": [
"bin/index.js",
"dist/index.js",
"types/index.d.ts"
],
"scripts": {
"clean": "rimraf ./dist ./test/generated ./test/e2e/generated ./samples/generated ./coverage ./node_modules/.cache",
"build": "rollup --config --environment NODE_ENV:development",
"build:watch": "rollup --config --environment NODE_ENV:development --watch",
"release": "rollup --config --environment NODE_ENV:production",
"validate": "tsc --project tsconfig.json --noEmit",
"run": "node ./test/index.js",
"test": "jest --selectProjects UNIT",
"test:update": "jest --selectProjects UNIT --updateSnapshot",
"test:watch": "jest --selectProjects UNIT --watch",
"test:coverage": "jest --selectProjects UNIT --coverage",
"test:e2e": "jest --selectProjects E2E --runInBand --verbose",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix",
"prepare": "npm run clean && npm run release",
"codecov": "codecov --token=66c30c23-8954-4892-bef9-fbaed0a2e42b",
"docker": "docker build -t eeelenbaas/openapi-typescript-codegen ."
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^14.2.1",
"camelcase": "^6.3.0",
"commander": "^14.0.2",
"fs-extra": "^11.3.3",
"handlebars": "^4.7.8"
},
"devDependencies": {
"@angular-devkit/build-angular": "21.0.4",
"@angular/animations": "21.0.6",
"@angular/cli": "21.0.4",
"@angular/common": "21.0.6",
"@angular/compiler": "21.0.6",
"@angular/compiler-cli": "21.0.6",
"@angular/core": "21.0.6",
"@angular/forms": "21.0.6",
"@angular/platform-browser": "21.0.6",
"@angular/platform-browser-dynamic": "21.0.6",
"@angular/router": "21.0.6",
"@babel/cli": "7.28.3",
"@babel/core": "7.28.5",
"@babel/preset-env": "7.28.5",
"@babel/preset-typescript": "7.28.5",
"@eslint/js": "9.39.2",
"@rollup/plugin-commonjs": "29.0.0",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "12.3.0",
"@types/cross-spawn": "6.0.6",
"@types/express": "5.0.6",
"@types/fs-extra": "11.0.4",
"@types/jest": "30.0.0",
"@types/node": "25.0.3",
"@types/node-fetch": "2.6.13",
"@types/qs": "6.14.0",
"@typescript-eslint/eslint-plugin": "8.50.1",
"@typescript-eslint/parser": "8.50.1",
"abort-controller": "3.0.0",
"axios": "1.13.2",
"codecov": "3.8.3",
"cross-spawn": "7.0.6",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.4",
"eslint-plugin-simple-import-sort": "12.1.1",
"express": "5.2.1",
"form-data": "4.0.5",
"globals": "16.5.0",
"glob": "13.0.0",
"jest": "30.2.0",
"jest-cli": "30.2.0",
"node-fetch": "2.7.0",
"prettier": "3.7.4",
"puppeteer": "24.34.0",
"qs": "6.14.0",
"rimraf": "6.1.2",
"rollup": "4.54.0",
"rxjs": "7.8.2",
"ts-node": "10.9.2",
"tslib": "2.8.1",
"typescript": "5.9.3",
"typescript-eslint": "8.50.1",
"zone.js": "0.16.0"
}
}