next-api-analyzer
Version:
Minimal, efficient Next.js API analyzer with Postman-ready testing guides for security, performance, and maintainability
58 lines • 1.44 kB
JSON
{
"name": "next-api-analyzer",
"version": "4.0.1",
"description": "Minimal, efficient Next.js API analyzer with Postman-ready testing guides for security, performance, and maintainability",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"next-api-analyzer": "dist/bin/cli.js"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepublishOnly": "npm run build"
},
"keywords": [
"nextjs",
"api",
"analyzer",
"security",
"performance",
"maintainability",
"typescript",
"cli",
"audit",
"static-analysis"
],
"author": "Pranshu Patel",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pranshu05/next-api-analyzer.git"
},
"bugs": {
"url": "https://github.com/pranshu05/next-api-analyzer/issues"
},
"homepage": "https://github.com/pranshu05/next-api-analyzer#readme",
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {
"chalk": "^4.1.2",
"commander": "^11.1.0",
"glob": "^10.3.10",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/node": "^20.9.0",
"tsup": "^8.0.1"
},
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
"next": ">=12.0.0"
}
}