postflame
Version:
🔥 Generate Postman collections automatically from Hono + Zod routes.
67 lines (66 loc) • 1.48 kB
JSON
{
"name": "postflame",
"version": "1.0.3",
"description": "🔥 Generate Postman collections automatically from Hono + Zod routes.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"postflame": "./bin/postflame.js"
},
"files": [
"dist",
"bin",
"README.md",
"LICENSE",
"CHANGELOG.md",
"QUICKSTART.md"
],
"scripts": {
"build": "tsc",
"build:test": "tsc --project tsconfig.test.json",
"dev": "ts-node src/cli/index.ts",
"test:gen": "npm run build:test && postflame dist-test/app.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"hono",
"postman",
"zod",
"openapi",
"api-docs",
"postman-collection",
"api-testing",
"hono-framework",
"typescript",
"cli"
],
"author": "Tamiopia",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/tamiopia/postflame.git"
},
"bugs": {
"url": "https://github.com/tamiopia/postflame/issues"
},
"homepage": "https://github.com/tamiopia/postflame#readme",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@hono/zod-openapi": "^1.1.3",
"@hono/zod-validator": "^0.7.4",
"axios": "^1.7.2",
"chokidar": "^3.6.0",
"dotenv": "^16.4.5",
"hono": "^4.0.0",
"tsx": "^4.19.2",
"zod": "^4.0.0"
},
"devDependencies": {
"@types/node": "^20.12.8",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}