UNPKG

@sirhc77/postman-sdk-gen

Version:

Generate a fully-typed TypeScript SDK from a Postman collection, with support for Axios or Fetch, folder-based namespacing, and auto-inferred types.

51 lines (50 loc) 1.24 kB
{ "name": "@sirhc77/postman-sdk-gen", "private": false, "version": "0.2.0", "description": "Generate a fully-typed TypeScript SDK from a Postman collection, with support for Axios or Fetch, folder-based namespacing, and auto-inferred types.", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "postman-sdk-gen": "./dist/cli.js" }, "scripts": { "build": "tsc", "start": "ts-node src/cli.ts" }, "author": "Chris Carrington <chris@megafarad.com> (https://megafarad.com)", "license": "MIT", "dependencies": { "axios": "^1.9.0", "browser-or-node": "^3.0.0", "commander": "^14.0.0", "node-fetch": "^3.3.2", "postman-collection": "^5.0.2" }, "devDependencies": { "@types/commander": "^2.12.0", "@types/node": "^22.15.30", "@types/postman-collection": "^3.5.11", "ts-node": "^10.9.2", "typescript": "^5.8.3" }, "keywords": [ "postman", "sdk", "typescript", "axios", "fetch", "codegen", "typescript-sdk", "postman-collection", "client-generator", "api-client", "openapi-alternative", "http-client", "rest-client", "api-wrapper", "api-codegen", "developer-tools", "postman-sdk" ] }